Site hosted by Angelfire.com: Build your free website today!
Freak_zone
Open menu bar
JAVA



Alerts
How do I get an alert when entering a page ? this is fun to give your visitors a message when entering your page<SCRIPT language="JavaScript">alert("your message here")</SCRIPT>

How do I get more then one messeage when entered.. ? This is ok but don't put to many or your visitors will get mad and thats not good..<script language="JavaScript"> <!-- start script alert("Your message here"); alert("Your message here"); alert("Your message here"); // end script --> </script>

How do I get an alert when leaving your page.. ? This is cool because no one can leave your page without reading the alert<body onunload="alert('your message here');"> How do I get an alert that tells you how long you have been on your page... ? this is cool it tells you how long someone has been on your page when they leave your page



How do I get an alert that asks your visitors for thier name then a alert comes up and welcomes your visitor ?This is really cool.<script language="javascript"> var name = prompt("Write your name below:","Write name here."); alert("Welcome "+ name +" to my page!!!"); </script>

How do I get an alert that asks the visitors if they want to enter my homepage ? This is cool I see alot of homepages that use it <script> var stay=confirm("Enter!! Press "ok" to enter, "cancel" to exit immediately!") if (!stay) window.location="java1.html" </script>