View Single Post
Old 01-04-2013, 04:02 AM   PM User | #4
xelawho
Senior Coder

 
xelawho's Avatar
 
Join Date: Nov 2010
Posts: 2,437
Thanks: 52
Thanked 453 Times in 451 Posts
xelawho will become famous soon enoughxelawho will become famous soon enough
you're right - dumb idea. How about:

Code:
<script>
$(document).ready(function () {
    var warn=true;
    $("form").submit(function () {
        warn=false;
    });
    window.onbeforeunload = function () {
        if (warn) {
            return "sure about that?";
        }
    }
});

</script>
xelawho is offline   Reply With Quote