Is there anyway to track the browser closing event by Javascript on nokia devices.
I am using window.onbeforeunload() event, but its not working.
-Pushkal.
Is there anyway to track the browser closing event by Javascript on nokia devices.
I am using window.onbeforeunload() event, but its not working.
-Pushkal.
Welcome to forum!
With N9 you can use:
Unfortunately this won't work with Symbian Browsers like 7.1 / 7.4 / 8.x.Code:window.onbeforeunload = function() { return 'Remember to save changes!'; }
Br,
Ilkka
Thank you Ilkka for replying and confirming. i needed this for older version. this requirement was for a functionality where i wanted user to not exit the browser without confirming certain things on the web page.
- Regards
Pushkal.