show alert box before leaving webpage

you can do this easily by using java script function

<script>
$(window).bind(&#039;beforeunload&#039;, function(e){
     return &#039;You are leaving this now&#039;;
});
</script>