L Lafg M New member Mar 26, 2009 #1 How can I make a messagebox in html that pops up when the page is closing? 10 points for first correct code!
How can I make a messagebox in html that pops up when the page is closing? 10 points for first correct code!
T techno_hacker_d600 New member Mar 26, 2009 #2 <html> <head> </head> <body onunload="alert('You are leaving this page!');"> </body> </html>