91-9990449935 0120-4256464 |
jQuery focus()The jQuery focus event occurs when an element gains focus. It is generated by a mouse click or by navigating to it. This event is implicitly used to limited sets of elements such as form elements like <input>, <select> etc. and links <a href>. The focused elements are usually highlighted in some way by the browsers. The focus method is often used together with blur () method. Syntax: It triggers the focus event for selected elements. It adds a function to the focus event. Parameters of jQuery focus() event
Example of jQuery focus() eventLet's take an example to demonstrate jQuery focus() event. Test it NowOutput:
If you want to stop people from writing in text input box in the above example then try the following code. It will disable to write in the text box. Test it Now
Next TopicjQuery select()
|