How do I let users know that "there are changes left to be saved on the form if they try to close the browser window?"
I have a form with couple of fields, Now if the user changes some of the fields and clicks on Close button on the browser window, my script should alert him of unsaved changes. How do I implement this? I have put in basic form validation but can't seem to think of a solution for window.close() event. Any sample links would be helpful.
|
|
|||||||||||
|
|
Well you could use the body
Never used a return to stop a page unload before but it should work. Update: In the header of the web page to make it a global var:
In the body(of course):
|
|||||||||||
|
|
You can use the beforeunload even to run a function that checks the default values of successful form controls with their current value. If there are any differences, prompt the user. Otherwise, do nothing. |
|||
|
|
|
Equivalent, but in JavaScript you could do something like:
where doValidation() is your custom validation function. |
|||||||
|
|
You can't prevent a user from closing a window (that would mean a malicious script could do that as well, making it a huge security vulnerability). That being said, you can ask if the user wants to save his/ her changes before actually leaving the page. You would need onBeforeUnload (set the attribute in HTML or use javascript) to call a script. This is what that script could look like:
In this function I invented a variable called 'formChanged'. The most sensible way to do this is to track whether a user has changed things while on the page (by adding the onChange attribute to the form fields that will set the formChanged variable to true). The linked post in your question's first comment shows you a jQuery script that will check for changes, if you want to use that. |
|||
|
|
Found this link as well.. Quite descriptive:
http://www.4guysfromrolla.com/webtech/100604-1.shtml |
|||
|
|