You are here: irt.org | FAQ | JavaScript | Redirect | Q1045 [ previous next ]
Try:
<html>
<head>
<script language="JavaScript"><!--
if (document.images)
location.replace('http://somewhere.com/page.htm')
else
location.href = 'page.htm';
//--></script>
<noscript>
<meta http-equiv="Refresh" content="3;url=http://somewhere.com/page.htm">
</noscript>
</head>
</html>