Run JavaScript when an element loses focus

Viewed 178750

I have a standard HTML input that I want to run JavaScript code when it loses focus. Sadly my Google searches did not reveal how to do this.

To make it clear, I'm looking for a way to do this:

<input type="text" name="name" value="value" onlosefocus="alert(1);"/>
5 Answers

How about onblur event :

<input type="text" name="name" value="value" onblur="alert(1);"/>

onblur is the opposite of onfocus.

You want to use the onblur event.

<input type="text" name="name" value="value" onblur="alert(1);"/>

You're looking for the onblur event. Look here, for more details.

Related