subeeshkk Posted August 6, 2008 Share Posted August 6, 2008 Hi All, I am basically new to the web world. I would like to thank all of you for your time with my question, in advance. I have written a javascript function to ask for a confirmation before closing a window. It works fine but the issue is that, WHEN MOVING TO ANOTHER LINK OR REFRESHING THE PAGE, the same function is being called and asking for confirmation. I have called this function in the event 'onbeforeunload'. Please help me to do this. I need to ask this confirmation only when closing the window . Is it possible? Please help me.... Code goes like this ........ ************************************* <html> <head> <title>.Testing Closing</title> <script language="JavaScript"> <!-- window.onbeforeunload = bunload; function bunload(){ answer="Want to leave?"; return answer; } //--> </script> </head> <body> Please stay on this page! </body> </html> ************************************* Thanks Subeesh Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.