I have this simple piece of code -
$(window).bind(\'beforeunload\', function(){ alert(\"Good Bye\") });
Works great with Firefox, IE8 but
Return a string instead:
$(window).on('beforeunload', function(){ return "Good bye"; });