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

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -