onUnload method on plugin Wordpress

811 Views Asked by At

I'm creating a plugin for WordPress. But I can't enter the method onUnload.

I tried to include it in the body tag, but doesn't work.

Is there a way to use this method?

2

There are 2 best solutions below

0
On

try this:

window.onbeforeunload = nameFunction;
0
On

Solution by OP.

<script type=”text/javascript”>

window.onbeforeunload = askUser;

function askUser(){
  return “The changes you made will be lost if you navigate away from this page”;
}

</script>