Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

home

Status
Not open for further replies.

theocraticmind

Programmer
Apr 19, 2002
318
CA
is there a way to send the user to THIER home page?
 
<a href=&quot;about:home&quot;>CLICK HERE TO GO HOME!</a>

Hope this helps!
colorado.gif

&quot;Quest for the Cup - 2002!&quot;
&quot;Onto the 2nd round!&quot;

 
and for a form button use this:

<script language=&quot;javascript&quot;>
function home()
{
document.location.href=&quot;about:home&quot;;
}
</script>

<form>
<input type=&quot;button&quot; value=&quot;home page&quot; onClick=&quot;home()&quot;>
</form>
colorado.gif

&quot;Quest for the Cup - 2002!&quot;
&quot;Onto the 2nd round!&quot;

 
LOL I'm not surprised at all! LOL

Why can't netscape conform to MSIE standards and accept the same scripts that MSIE accepts? Netscape seems pretty useless if you ask me!
colorado.gif

&quot;Quest for the Cup - 2002!&quot;
&quot;Onto the 2nd round!&quot;

 
it's ok if it's ie spesific, i'm using it for myself anyway. i wrote a script that lanches the streaming radio station i lisen to all the time, without me having to go to thier site, saves time seeing as they have an unusualy slow site. i just wanted it to take me back to my home page when it was lanched.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top