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

Determine Browser (IE or NS)?

Status
Not open for further replies.

wood

MIS
Aug 3, 2000
139
CA
Does anyone have a script that will determine if the person is using IE or Netscape? I don't care what version, just the browser type.

Please help!
 
if(document.all)
{
//IE code
}
else if(document.layers || (document.getElementbyID && !document.all)
{
//NS code.
} adam@aauser.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top