Share this page 

Load an HTML page depending on the browser typeTag(s): Varia


<SCRIPT>
if (navigator.appName == "Microsoft Internet Explorer")
  document.write('<META HTTP-EQUIV="REFRESH" CONTENT="1;URL=msie.html">');
else
  document.write('<META HTTP-EQUIV="REFRESH" CONTENT="1;URL=netscape.html">');
</SCRIPT>
The browser version can be obtain with
browserversion = parseint(navigator.appversion);