i am doing some things that only seem to work in IE6...is it possible to have the HTML detect what browser and version is being used, and if its not IE6 it will redirect them to a different place???
thanks
thanks
<script language="JavaScript"> function redir() { var ie=document.all&&navigator.userAgent.indexOf("Opera")==-1; if(!ie) { location.href="somefile.html"; } } </script> <body onLoad="redir()">
Comment