Issue
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);"/>
Solution
How about onblur event :
<input type="text" name="name" value="value" onblur="alert(1);"/>
Answered By - Canavar
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.