I want the script which can display the custom message to the user when it exits from the page in the firefox browser. Firefox is showing its default message even after using custom message, though chrome is showing it correctly. But i want to display this custom message in firefox also
window.onbeforeunload = function() {
return 'Are you sure.';
}