I am using web socket connection for communication. But when user refresh page, I want to close this web socket connection.
I also using window.onbeforeunload
event to show confirmation box to user with customized text. If user selects 'do not reload' option then no action (which is working fine)
But I want to close web socket connection if user selects reload option. I don't know how to achieve this. I tried to call window.unload
and tried to close web socket connection but its not working. My code is as follows.
window.onbeforeunload = function(e) {
return "you are closing this web page';
};
window.unload = function(e) {
webSockect.closeConnection();
};
Please advise how to achieve this.
First of all, there is a syntax error in the code above, you have written:
So, type of quotes there should be either single or double, same at start and end of the string.
It is supposed to be, and it will work:
====
Back to the point. All you can do with unload prompt is to change the Message. Anything otherwise doesn't work like:
Q. even you write something before the
return
if the function, that will be ignored by the browser.