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

detection and redirecting help

Status
Not open for further replies.

ameslee

Programmer
Feb 12, 2006
34
0
0
AU
hope someone can help me.
how do i detect if javascript is being used on someones computer, if they dont have it enabled it therefore redirects them somewhere else?
thanks
 
Use the <noscript> tag.
Code:
<html>
<head><title>MoD113</title>
<noscript>
<meta http-equiv="refresh" content="0;URL=http://www.google.com">
</noscript>
</head>
<body>
...
</body>
</html>
Harry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top