Posts by Andre Matos • 11 points
1 post
-
1
votes1
answer499
viewsQ: Is there a way to cancel Unload() or Onbeforeunload()?
Is there any way to cancel Unload() or Onbeforeunload()? Something like that: window.onbeforeunload = function(){ //ação aqui break; //cancela o fechamento da pagina sem exibir nenhum alert } I need…