Are you sure you want to navigate away from this page
4 posters
Page 1 of 1
Are you sure you want to navigate away from this page
I have a web page - www.all-serials.net that contains a textbox and a submit button. When the user edits the text in the textbox and clicks another link (not the submit button) how do I display the 'Are you sure you want to navigate away from this page' popup message? I want some code or IDK.. My version is PunBB (punbb)
Re: Are you sure you want to navigate away from this page
You would use the window.onunload event by attaching an event handler. The handler would ask the user if they wish to leave.
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: Are you sure you want to navigate away from this page
Can u give me the code pls and instructions how to put this code
Re: Are you sure you want to navigate away from this page
Try this:
- Code:
(function(b){
var f = function() { return confirm('Are you sure you wish to leave?'); };
if(b.attachEvent) {
b.attachEvent('onunload', f);
}
else {
b.addEventListener('unload', f, false);
}
})(document.body);
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: Are you sure you want to navigate away from this page
I'm not sure if unload event is fired when clicking links to a new page. Only clicking back/forward and closing or reloading the page.
Might have to think of an alternative way.
Might have to think of an alternative way.
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: Are you sure you want to navigate away from this page
I post ur code in java.. click in 1 topic, write something in quick reply and then click F5 to refresh the page.. and nothing.. i lost my message
Re: Are you sure you want to navigate away from this page
Yes java is turning on and tick to all pages, but now its working the other admin put the link in css i think idk.. and now its working.. thanks for codes
Re: Are you sure you want to navigate away from this page
Topic Solved & Locked |
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Similar topics
» Switch user page out with a html page
» Mobile Version - go to last page/go to page number needed
» Contact page and Legal page is not working
» [Help] HTML Page: Space between Header and top of page.
» Register Page redirecting to Login Page
» Mobile Version - go to last page/go to page number needed
» Contact page and Legal page is not working
» [Help] HTML Page: Space between Header and top of page.
» Register Page redirecting to Login Page
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum