textbox onblur function in jquery
by Ramya[ Edit ] 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'>