Event to lose focus TextBox - Javascript

I need to remove focus from the text box. if I need to set focus for a text field, we have a .focus () method. Similarly, there is another way to remove focus from a text field using javascript / jquery.

+3
source share
3 answers

Just set focus elsewhere

0
source

Yes, there is a standard DOM-HTML blur () .

0
source

All Articles