How to disable Save As dialog while pressing Ctrl+S
Description: I am developing one web application.Here When i am going to form submitting using “Ctrl+S”,In Firefox before submitting “save As dialog” will open.How to disable save As dialog in Firefox.
You can accomplish this by handling the window’s
onkeypressevent to check whether theCTRLkey andSare depressed, and if so, canceling the event from by callingpreventDefault()on the event object:Note that the keypress event may behave differently in different browsers. This did work in FireFox, however.