Calling blur method using jquery
To call a function when a textbox loose
focus we can use blur method. This
method is called as soon as focus is lost.
<input type="text" id="txtName" />
<script type="text/javascript">
$("#txtName").blur(function () {
alert("Blur method has been
called");
});
});
</script>
Comments
Post a Comment