Reputation: 121
I need to remove focus from a textbox. if i need to set focus for a textbox we have .focus() method. Similarly is there any other method to remove focus from a textbox using javascript/jquery.
Upvotes: 3
Views: 10145
Reputation: 1858
Maybe http://api.jquery.com/blur/ ?
See example: http://jsfiddle.net/LekisS/7xsfx/1/
Upvotes: 8