
November 5th, 2012, 10:56 PM
|
|
Contributing User
|
|
Join Date: May 2011
Posts: 107
Time spent in forums: 13 h 8 m 18 sec
Reputation Power: 3
|
|
|
Onbeforeunload not work on mobile browser? Any alternative?
Hi. I've a js confirm message if a user want to leave the page. It work on pc browser but when I try to use it on mobile safari it doesn't work. And I can't find any thing from the internet. There're only a little in the net but those doesn't have a firm solution. It's more a suggestion to give a try but it's no use.
Anyone know any alternative? Thank you.
window.onbeforeunload = askUser ;
function askUser(){
return "Are you sure to exit?";
}
|