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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Redirects in HTML

Status
Not open for further replies.

JazzLeg

Programmer
Aug 22, 2002
63
GB
Is it possible to write a redirect in HTML?

Many thanks
 
You can do it with a meta tag:
<meta http-equiv=&quot;Refresh&quot; content=&quot;5;url=http://www.yoursite.com&quot; />

The 5 is 5 seconds so it will redirect after that.
Any good?

Failing that, you'd probably have to change the location of the page using javascript.

Hope I helped / Thanks for helping
if ((Math.abs(x)<10&&Math.abs(y)<10) && (((parseInt(Math.abs(x).toString()+Math.abs(y).toString())-Math.abs(x)-Math.abs(y))%9)!=0)) {alert(&quot;I'm a monkey's uncle&quot;);}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top