Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable "window.onbeforeunload" when submit form?

When i close this page from browser a alert box is open to ask "Leave this page" or "stay on this" that is ok. But when submit form from Submit button given below it again ask and show this alert box . how i disable this when submit form it should not be ask and show alert box ??

<script>
        window.onbeforeunload = function(e) {
          return 'You application form is not submitted yet.';
        };
        WinPrint.document.write('<span style="font-size:22px">' + prtContent.innerHTML + '<span>');
    </script>

    <div>
          <input type="submit" name="" class="button" value="Save Your Application Form" onclick="if(document.getElementById('thumb').value=='') { alert('Please select your photograph.'); return false; } return confirm('Read your application form thoroughly before submitting, Once submitted data, it will not changed in any case, press OK to submit or press CANCEL to make corrections.'); return false;" style="text-align:center !important; float:none !important;"/>
    </div>
like image 681
Muhammad Hassan Avatar asked Dec 12 '22 02:12

Muhammad Hassan


1 Answers

$(document).on("submit", "form", function(event){
        window.onbeforeunload = null;
});

Should do the trick

like image 63
DARK_DUCK Avatar answered Dec 21 '22 11:12

DARK_DUCK