Hey guys, I was hoping someone could provide a working popup that works in all browsers including firefox 4.0. I was using this one below but it stopped working within the new firefox, it just says are you sure you want to leave this page now or something.
Would appreciate the help!
Thanks
:food-smiley-010:
Code:
<script type="text/javascript" language="javascript">
var areYouReallySure = false;
var internalLink = false;
function areYouSure() {
if (!areYouReallySure && !internalLink) {
areYouReallySure = true;
location.href=""
return "WAIT! Are you sure you want to miss out! Click cancel. \r\n ";
}
}
window.onbeforeunload = areYouSure;
</script>
Would appreciate the help!
Thanks
:food-smiley-010: