Skip to content

Commit 50d7cc2

Browse files
committed
minor
1 parent 0641d55 commit 50d7cc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

2-ui/4-forms-controls/2-focus-blur/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
An element receives a focus when the user either clicks on it or uses the `key:Tab` key on the keyboard. There's also an `autofocus` HTML attribute that puts the focus into an element by default when a page loads and other means of getting a focus.
44

5-
Focusing generally means: "prepare to accept the data here", so that's the moment when we can run the code to initialize or load something.
5+
Focusing on an element generally means: "prepare to accept the data here", so that's the moment when we can run the code to initialize the required functionality.
66

77
The moment of losing the focus ("blur") can be even more important. That's when a user clicks somewhere else or presses `key:Tab` to go to the next form field, or there are other means as well.
88

99
Losing the focus generally means: "the data has been entered", so we can run the code to check it or even to save it to the server and so on.
1010

11-
There are important peculiarities when working with focus events. We'll do the best to cover them here.
11+
There are important peculiarities when working with focus events. We'll do the best to cover them further on.
1212

1313
## Events focus/blur
1414

0 commit comments

Comments
 (0)