Page Unload Warning

Page Unload Warning



<script>

var focused_on = false;
  
jQuery(document).ready(function($) {



			$( ".all_details_wrap" ).click(function() { //1676AM 
			
                 focused_on = true;

			}); //1676AM 
			
			$( "#publish" ).click(function() { focused_on = false; });
			

}); 

    jQuery(window).on('beforeunload', function() {
         
         if (focused_on) {
	         return 'call stopped!';
         }
    }); 


</script>

Comments