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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can't do this with jQuery, but you can attach a handler to
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 |
|||||||
|