When a user tries to close the browser window a popup box pops up. But the problem with that is, it displays its own popup data. So please let me know how can I customize it content of popup box in "Firefox".
window.onbeforeunload = function() {
return "my text";
};
Here instead of "my text" it is displaying its own data. Note: its working fine in Chrome!
Thank you.