I'm creating a plugin for WordPress. But I can't enter the method onUnload.
onUnload
I tried to include it in the body tag, but doesn't work.
Is there a way to use this method?
try this:
window.onbeforeunload = nameFunction;
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>
Copyright © 2021 Jogjafile Inc.
try this: