Hey guys, What I'm trying to achieve is to Warn the user of unsaved changes if he/she tries to close a page or navigate away from it without saving first.

I've managed to get the OnBeforeUnload() dialog to pop-up... but I don't want it to be displayed at all if the user hasn't modified any field values. For this, I'm using this hidden input field called is_modified that starts with a default value of false and flips to true when any field is edited.

I tried to bind the change event to this is_modified field to try and detect for value change... and only then activate OnBeforeUnload.

$( '#is_modified' ).change( function() {
    if( $( '#is_modified' ).val() == 'true' )
    	window.onbeforeunload = function() { return "You have unsaved changes."; }
});

But from what I figure is that the change() event works only after these 3 steps - a field receives focus, a value is changed and the field looses focus. In case of the hidden input field, I'm not sure how this receiving and loosing focus part works! Hence, the onbeforeunload function is never being activated.

Can anyone suggest a way to maintain a trigger over is_modified?

Thanks, m^e

link|improve this question

64% accept rate
feedback

5 Answers

We just use Window.onbeforeunload as our "changed" flag. Here's what we're doing, (using lowpro):

Event.addBehavior({
  "input[type=radio]:change,input[type=text]:change,input[type=checkbox]:change,select:change": function(ev) {
       window.onbeforeunload = confirmLeave;
  }
  ".button.submit-button:click": function(ev) {
       window.onbeforeunload = null;
  },
});


function confirmLeave(){
    return "Changes to this form have not been saved. If you leave, your changes will be lost."  
}
link|improve this answer
1  
Apparently setting onbeforeunload=null fails in IE: bustedmug.blogspot.com/2007/01/… – Idris Mokhtarzada Jan 3 '11 at 19:31
It seems this is an IE7-only bug -- it works fine in IE8, which is all I have to support, luckily! – Bryan Larsen Feb 3 '11 at 15:17
feedback

I had a similar requirement so come up with following code

    $(document).ready(function()
    {
        needToConfirm = false; 
        window.onbeforeunload = askConfirm;

        function askConfirm()
        {
            if (needToConfirm)
            {
                return "Your unsaved data will be lost.";
            }       
        }   

        $("select,input,textarea").change(function ()
        {
            needToConfirm = true;
        })

   });   

Above code checks needToConfirm variable, If its true then it will display warning message or it will submit the page.
I have used jquery to change needToConfirm to true whenever any input box's value is changed.
Make sure you import jquerys.js before this code.

link|improve this answer
feedback

why not have the onbeforeunload call a function that checks if the values have changed, and if so return the "unsaved changes" confirm?

link|improve this answer
feedback

Try your logic in a different manner. Meaning, put the logic for checking the value of the input field in your onbeforeunload method.

window.onbeforeunload = function () { 
    if ($("#is_modified").val() == 'true') { 
    	return "You have unsaved changes."; 
    } else { 
    	return true; // I think true is the proper value here 
    } 
};
link|improve this answer
1  
"true" is not the proper value. In some browsers (At least Firefox, perhaps more) returning "null" will cancel the dialog. Howerver, in IE, I could not find a way to cancel the dialog from within the handler. The only thing that worked for me was to remove the handler entirely beforehand (ie, "window.beforeunload = null"), as in Bryan Larsen's answer. – Jason Creighton Jun 19 '09 at 21:00
Fair enough. Sadly, I didn't thoroughly test my solution before I answered. :( – Jordan S. Jones Jun 20 '09 at 1:56
1  
I know I'm a little late to the party, but I was just running into this. However in IE if the function returns undefined (or doesn't return anything), the dialog doesn't show (this also works in FF). I tried returning true/false/null and IE would just put "true"/"false"/"null" as the text in the dialog. No idea why. Hope this helps someone else. – Jonathan Kuhn Feb 23 '11 at 23:39
feedback

in IE9 you can use simple return statement (re) which will not display any dialogue box. happy coding..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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