hello,
i check if it’s an ie or netscape, but can you also check the version of ie?
this is the code that i have for the first, can somebody say how i can do to check the version?
<script>
<!–
/By George Chiang (JK’s JavaScript tutorial)
http://www.javascriptkit.com
Credit must stay intact for use/
var n=navigator.appName
var ns=(n==“Netscape”)
var ie=(n==“Microsoft Internet Explorer”)
if (ns)
location=“page1.htm”
else if (ie)
location=“page2.htm”
//–>
</script>:cyborg: