I have written this code

function winUnload() {
    alert("Unload Window");
    MyMethod();
}

window.onunload = function() { winUnload(); }

This code is working fine in IE and Firefox. But this code is not working in Chrome. Both the statements alert("Unload Window"); and MyMethod(); are not working.

link|improve this question
There's a syntax error in the code you posted (missing "{" from the "onunload" assignment). You could just write window.onunload = winUnload;. – Pointy Oct 17 '11 at 13:19
4  
On Chrome, if I put an alert in an unload event handler, the console tells me "Blocked alert('something') during unload.". But if you do what Pointy has already mentioned, the call to MyMethod should work. – James Allardice Oct 17 '11 at 13:21
Modern day browsers block most scripts running onunload so the browser is faster. – epascarello Oct 17 '11 at 13:53
window.onunload = function() { winUnload(); } This is what I want to say..... Its working same as we write as window.onunload = winUnload; – Imran Oct 17 '11 at 14:27
Actually I wants to save my forms values in database if user leave the page without showing him any message (alert). I am using asp.net c# mvc 1. Is there any other way to do this work? – Imran Oct 18 '11 at 16:56
feedback

3 Answers

There are some actions which are not working in chrome, inside of the unload event. Alert or confirm boxes are such things.

But what is possible (AFAIK):

  1. Open popups (with window.open) - but this will just work, if the popup blocker is disabled for your site
  2. Return a simple string (in beforeunload event), which triggers an confirm box, which asked the user to leave the page.

Example for #2:

$(window).on('beforeunload', function() {
    return 'Your own message goes here...';
});

Demo: http://jsfiddle.net/PQz5k/

link|improve this answer
feedback

Please try window.onbeforeunload instead for window.onunload for chrome. You can also try calling onbeforeunload from the body> tag which might work in chrome.

However, we do have a problem with unload function in chrome browser. please check

location.href does not work in chrome when called through the body/window unload event

Thanks, Nived

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.