onblur or onfocusout events not working Google Chrome. but it works fine in every other browsers
<HTML><HEAD>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/ecmascript">
$(document).ready(function() {
$('#lPass').blur(function() {
alert('s');
});
});
</script>
</HEAD>
<BODY >
<a id="lPass" href="##">ss</a>
</BODY>
</HTML>