You may want to warn user if Back button is pressed. This works in
most of the cases. If you have some unsaved form data, you might want to
trigger a warning message to user if Back button is pressed.
Following Javascript snippet will add a warning message in case Back button is pressed:
for detail click here
Following Javascript snippet will add a warning message in case Back button is pressed:
window.onbeforeunload =
function
() {
return
"You work will be lost."
; };
for detail click here
No comments:
Post a Comment