Want to open a modal when closing browser tab. Tried window.onbeforeunload , window.unload but not working. Any Other Solution with JavaScript or jQuery?
<script>
window.onbeforeunload = modal;
function modal() {
return 'leaving';
}
</script>