Posted on : 2019-07-05 06:50:41 View Type: public
Vaibhav Dixit
Hello Team,
We want to add a pop up message before getting close the Website browser tab. For example Gaana.com Screenshot attached, Please follow the link to see the attachment.
Attachement - : https://ibb.co/3kg33xH
code -
<script>
$(document).ready(function() {
var myPopUp = $('#pop-up').css('display', 'block');
$(window).bind('beforeunload', function(){
return 'load my pop up here instead of the default browser message';
});
});
</script>
Looking forward to your reply,
Thanks!
