Alert message when close the browser
Alert message when close the browser
<script language="JavaScript" type="text/javascript">
window.onbeforeunload = confirmExit;
function confirmExit() {
return "Are you sure you want to close this page?";
}
</script>
<script language="JavaScript" type="text/javascript">
window.onbeforeunload = confirmExit;
function confirmExit() {
return "Are you sure you want to close this page?";
}
</script>
Comments
Post a Comment