How do I go about inserting a button that will take the visitor to another URL?
P Paul Curtis Jul 30, 2004 #1 How do I go about inserting a button that will take the visitor to another URL?
R Richard Weerts Jul 30, 2004 #2 to be safe across browsers, here's one way ...: <form action=http://the other url method="GET"> <input type = "submit" value="click here to go to the other URL"> </form>
to be safe across browsers, here's one way ...: <form action=http://the other url method="GET"> <input type = "submit" value="click here to go to the other URL"> </form>
K Kevin Spencer Jul 30, 2004 #3 <input type="button" name="B1" value="Click Here" onclick="document.location='http://www.microsoft.com';"> -- HTH, Kevin Spencer ..Net Developer Microsoft MVP Big things are made up of lots of little things.
<input type="button" name="B1" value="Click Here" onclick="document.location='http://www.microsoft.com';"> -- HTH, Kevin Spencer ..Net Developer Microsoft MVP Big things are made up of lots of little things.