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

IE sniff on mac

Status
Not open for further replies.

y2k1981

Programmer
Aug 2, 2002
773
0
0
IE
I don't have a mac so I can't test this, but would the following detect IE on a mac ONLY:
Code:
if(navigator.appVersion.indexOf("Mac")!=-1 && navigator.appName.indexOf("Microsoft")!=-1)
alert("This is IE on Mac")
else alert("This isn't IE on Mac")
 
(navigator.userAgent.toLowerCase().indexOf("mac")!=-1) &&

navigator.userAgent.toLowerCase().indexOf("msie") != -1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top