Is there any way that i can override onbeforeunload popup ?
I tried with below but it does't work:
if($('body').hasClass('admin')){
window.onbeforeunload = function(event) {
notifySaveChangesUser(event);
//return null;
//event.returnValue = "Say";
};
}
function notifySaveChangesUser(event){
//Doing some stuff here
}