I am using window.onbeforeunload Java Script , for while you close the tab in Chrome need to show the pop up as Leave Page or Stay . But the window.onbeforeunload is working in IE and not working in the Chrome "Version 63.0.3239.132 ".
And i have attached my code below
window.onbeforeunload = function () {
return "Hi";
};