how to close another browser tab with javascript
window.close();//closes the current browser tab
how to close another browser tab with javascript
window.close();//closes the current browser tab
javascript prompt on window close
// custom message prompt is no more supported (only IE does)
window.addEventListener("beforeunload", function(e) {
if( someBusyFlag )
{
// ask for stay
e.preventDefault();
// Chrome requires this var set
e.returnValue = '';
}
else
{
// grant quit
delete e['returnValue'];
}
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us