Hello,
How to force window.onbeforeunload to act only on pertular action or url?
I have a form which has data. if it navigates to another page thenwindow.onbeforeunload= function() { return "please save data"; };
is working.
But after submission of that page, it navigates to another page on that cation also it is asking me for saving data.
which I dont want.
I want it just for that page url.
Is it possible?
how?