Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to implement a feature that if a user is navigating away from a page and they have unsaved changes on the page they get alerted. So I need to capture the event that fires to movement from the page and perform custom actions on it. Hoping to do this with jquery. Any tips?

share|improve this question

1 Answer

up vote 9 down vote accepted

You can't do this with jQuery, but you can attach a handler to window.onbeforeupload with plain JavaScript:

window.onbeforeunload = function() {
  return "You have unsaved changes, do you want to leave?";
};

Just bind this when they make changes to any inputs, and unbind it when hitting the save button (so it won't prompt on submission) with window.onbeforeunload = null;.

share|improve this answer
jQuery can handle the event with bind, but I'm not sure that it's normalized across browsers. – zzzzBov Nov 6 '10 at 3:14
@zzzzBov - It doesn't work cross-browser...so it doesn't work :) – Nick Craver Nov 6 '10 at 9:46
IE 8 considers null a a return submission, so it will fire the event with the default text anyway. – James Drinkard May 3 '12 at 16:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.