Your Best Hosting
Solution

Keeping it Simple


  Main Menu
     Home Page
     About Us
     Hosting Plans
     Register Domains
     The Good Stuff
     Member Area
     Support Ticket
  Free Extras
     Free Domain Name
     RVSiteBuilder
     WebTraxEditor
     Tutorials
     And Much More
  Important Information
     90 Day Free Trial
     Our Guarantee
     F A Q
  Contact Information
     Contact Us
     Our Forum
  Site Map
     Site Map

Back to Previous Page






Alert Box
What it's all about:

Description: If you're just looking for a quick way to tell your visitor something, use this JavaScript alert! When they put their cursor on the link, they get the message in the form of a JavaScript alert!

How to install this script:
TWO STEPS TO INSTALL ALERT:

1. Paste the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document

STEP ONE: Copy this code into the HEAD of your HTML document

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- Begin
function drawAlert () {
alert ("This is an alert message that can say whatever you want!"); } // End --> </SCRIPT>

<!-- STEP TWO: Put this code into the BODY of your HTML document -->

<BODY>
<CENTER>
<FORM>

<input type=button value="JavaScript Alert! Click Here!" onClick="drawAlert()"> </FORM> </CENTER>