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>

Comments

Popular posts from this blog

Display multiple marker point on Google Map with same location or same Longitude,Latitude

Difference between Layered Architecture and N-Tier Architecture

Difference Between For and Foreach loop