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

netscape 6 browser check

Status
Not open for further replies.

Guest_imported

New member
Joined
Jan 1, 1970
Messages
0
Is there a way to check to see if the browser is netscape 6 and then open a different page. When I use the check browser in Dreamweaver it doesn't quite seem to work.
 
Try something like this:

<SCRIPT>
if(navigator.appName==&quot;Netscape&quot; && appVersion == &quot;6&quot;)
location=&quot; //opens this page if user has NS6
else
location=&quot; //opens this page if user has anything else
</SCRIPT> I have not failed; I merely found 100,000 different ways of not succeding...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top