Hi,
JDev 11.1.2.4
After the page or fragment loads I call a javascript method that sets a handler for the onBeforeUnload event.
window.addEventListener('beforeunload', function() { return 'lol'; });
So when I leave the page, I get a popup with a message. I can either Stay on the page or Leave it.
So far, so good.
If I click on Stay on this page. All the javascript behavior is messed up on the page. Popup does not show, click on buttons does not trigger actionListener.
Is there a reason?
Thanks