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






Button Link
What it's all about:

This short script will turn an ordinary button into a link to any page. Easy!

How to install this script:
TWO STEPS TO INSTALL BUTTON LINK:

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

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

<HEAD><SCRIPT LANGUAGE="JavaScript">
<!-- Original: Sven David Hildebrandt (shildebr@online.no) -->
<!-- Web Site: http://home.hia.no/~sdhild99 -->

<!-- Begin
function goToURL() { window.location = "http://example.com/new"; } // End --> </script>

</HEAD>

STEP TWO: Copy this code into the BODY of your HTML document

<BODY>

<form>
<input type=button value="Button Inscription" onClick="goToURL()"> </form>