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.
window.onunload = winUnload;. – Pointy Oct 17 '11 at 13:19alertin anunloadevent handler, the console tells me "Blocked alert('something') during unload.". But if you do what Pointy has already mentioned, the call toMyMethodshould work. – James Allardice Oct 17 '11 at 13:21