Here I have an anchor tag in my html page which will go to Google when I click. I have a jQuery function which needs to be fired when the page leaves.
$(window).unload(function(){
alert('fffffffff');
});
I found this works fine in a video tutorial. But it's not working for me. Using firefox. help
Here I have an anchor tag in my html page which will go to Google when I click. I have a jQuery function which needs to be fired when the page leaves.
$(window).unload(function(){
alert('fffffffff');
});
I found this works fine in a video tutorial. But it's not working for me. Using firefox. help
Share Improve this question edited Sep 14, 2013 at 7:07 Rich 5,7319 gold badges44 silver badges63 bronze badges asked Sep 14, 2013 at 6:06 ShameerShameer 2331 gold badge5 silver badges15 bronze badges 4- Are there any errors in the console? – Austin Brunkhorst Commented Sep 14, 2013 at 6:12
- 1 possible duplicate of $(window).unload is not firing – Barmar Commented Sep 14, 2013 at 6:29
- Do not use alert,prompt or confirm in unload method – Voonic Commented Sep 14, 2013 at 7:08
- @shadow prompt and confirm also not working – Shameer Commented Sep 14, 2013 at 7:57
2 Answers
Reset to default 5Its working fine, you just need to remove the alert
, as some browsers don't allow alert on unload
event.
$(window).unload(function(){
console.log("hello");
});
try this http://jsfiddle/vyMdF/
Just run it again and you can check the console.
You can refer over here $(window).unload is not firing
window.onbeforeunload = function() {
return "Are you sure you wish to leave the page?";
}