kohkindachi
10-03-2011, 12:29 PM
Hey guys these code below works on chrome and IE and the older version of FF. But not working on the latest (firefox is showing their own alert instead)....can something be done?
<script language="JavaScript">
var allowConfirm = true;
window.onbeforeunload = confirmExit;
function confirmExit()
{
if(allowConfirm)
return "You're about to be redirected"+ '\n'+ "IF this is UNIntentional --- Kindly click [CANCEL]/[Stay on Page]";
else
allowConfirm = true;
}
</script>
<script language="JavaScript">
var allowConfirm = true;
window.onbeforeunload = confirmExit;
function confirmExit()
{
if(allowConfirm)
return "You're about to be redirected"+ '\n'+ "IF this is UNIntentional --- Kindly click [CANCEL]/[Stay on Page]";
else
allowConfirm = true;
}
</script>