Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

confirm before leaving page javascript

//says: do you want to leave this site changes may not be saved
window.onbeforeunload = function(e) {
  return "Do you want to exit this page?";
};
 
PREVIOUS NEXT
Tagged: #confirm #leaving #page #javascript
ADD COMMENT
Topic
Name
6+5 =