I want to show alert on only on close tab/window.
Right now i have did something as shown bellow, but it fires even on 'F5', back button of browser... but I only want it on tab/window close.
I tried so much on this and also checked so many stackoverflow links but didn't get any solution
window.onbeforeunload = function(e) {
return confirmExit()
}
function confirmExit() {
//my logic
return false;
}
also added following code to prevent onbeforeunload on click of any link in my site
$(document).ready(function() {
$('a[rel!=ext]').click(function() {
window.onbeforeunload = null;
});
$('form').submit(function() {
window.onbeforeunload = null;
});
});
so please help me out.