I want to change the browser message on before window unload, following is the code am trying to work on
var displayMessage = true;
$(window).bind('beforeunload', function(){
    if(displayMessage){
        var message =  '-- You specify a custom message here ---'+'\n Thanks for visiting my site!';
        return message;
    }
});
With the above code the message i get on firefox is
This page is asking you to confirm that you want to leave - data you have entered may not be saved.
How to change this to custom message