Javascript examples for jQuery Method and Property:blur
Programatically trigger a blur event with jQuery
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> <script type="text/javascript"> $(window).load(function(){//from w w w .ja v a 2 s.co m $("input").blur(function() { console.log(this.value); }).blur(); }); </script> </head> <body> <input type="text" value="test val"> </body> </html>