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