How to display a modal window before closing the site, tried to remake the following script:
window.onbeforeunload = function (){ if(confirm('ΠΠ° Π½Π΅ΡΠΆΠ΅Π»ΠΈ?')){ return true; } else { return false; } }
It turned out like this:
window.onbeforeunload = function (){ $('#myModal').show() }
But still does not work, how to do it?