20 January 2020

How to get warning when exit browser without saving?

Get warning when exit browser without saving



My website is www.wpcodekit.com



<script>
jQuery(document).ready(function($){

$(window).unbind('beforeunload');

$("input[type='submit']").click(function(){
     $(window).unbind('beforeunload');
});


$("input").on("change paste keyup", function() {


  $(window).bind('beforeunload', function(){
return 'Are you sure you want to leave?';
  });

});


var contenteditable = document.querySelector('[contenteditable]'),
    text = contenteditable.textContent;



$(contenteditable).each(function(){

$(this).on("change paste keyup", function() {

$(window).bind('beforeunload', function(){
return 'Are you sure you want to leave?';
});

});
});


$("input[type='submit']").click(function(){
     $(window).unbind('beforeunload');
});


});
</script>

No comments:

Post a Comment

How to create youtube videos slider with play and pause option in wordpress?

Create youtube videos slider with play and pause option in wordpress youtube videos slider Use this shortcode:- [punjab_today] function my_...