required field notification using jquery

you can use focusout and blur events with jquery for losing focus from your textbox.

you can use jquery function like this..

   $("#idOfTextField").blur(function(){

  //your code

});

see this if it helps..

Leave a Comment