john
john

Reputation: 121

Event to Lose focus of a TextBox - Javascript

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

Answers (3)

Sergiu Dumitriu
Sergiu Dumitriu

Reputation: 11601

Yes, there's the DOM-HTML standard blur().

Upvotes: 0

akc42
akc42

Reputation: 5001

Just set the focus somewhere else

Upvotes: 0

Related Questions