jquery - Hide "save successful" message when user starts updating a page again -
i have page few textboxes , dropdowns. when hit submit information on page saved , "save successful" message sent client. if user starts updating page again message should go away. don't want add on focus event inputs since can killer. need on pages in app. regarding highly appreciated. thanks!
since you're working jquery...this still adding in on focus event, doing global listener normal inputs (including checkboxes, hidden, radio, etc), instead of event on each , every item.
$(':input').focus(function(){ $('#successfullysavedid').hide(); });
Comments
Post a Comment