textbox onblur function in jquery

by Ramya 2012-07-06 13:00:59

textbox onblur function in jquery:

use jquery blur() to perform any operation on blur of the textbox,
$('input:text').blur(function(){
alert("Success");
});


hence you can avoid calling any function onblur of a textbox individually like,
<input type=text onblur='some function'>


Razz
Razz
Razz
1031
like
0
dislike
0
mail
flag

You must LOGIN to add comments