I need to display a confirm dialog box before closing the browser window using javascript or PHP. The confirm box should come up when I click the close button of browser; ot
With Jquery:
$(window).bind('beforeunload', function(e) { // Your code and validation if (confirm) { return "Are you sure?"; } });