Safari can be found by using:
if (navigator.userAgent.index
alert("It's Safari!")
}
I don't know about OSX... http://home.dobbelaere.com
Good luck!
Main Topics
Browse All TopicsHi! All:
First time here, and wonder if anyone can help me with a javascript that will detect if a user is using Mac OS X?
Also, a new brwoser called "Safari" is released yesterday for Mac OS X, and I wonder how can I use javascript to detect if a user is using that particular browser?
Thanks for your help!
Y.L
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Safari can be found by using:
if (navigator.userAgent.index
alert("It's Safari!")
}
I don't know about OSX... http://home.dobbelaere.com
Good luck!
I dont believe OS X broadcasts itself as specifically being OS X pending the browser. (safari does now)
This function is pretty accurate on determining OS X:
function getMacOSVersion() {
ua = navigator.userAgent.toLowe
if(navigator.plugins["Defa
return "OSX"
} else {
return "other"
}
}
Also, Safari's user agent is:
Netscape 5.0 Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/48 (like Gecko) Safari/48
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this question is:
points split ketapillar and SGC
Please leave any comments here within the next seven days.
PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!
Jester_48
EE Cleanup Volunteer
Business Accounts
Answer for Membership
by: ketapillarPosted on 2003-01-10 at 09:08:54ID: 7702938
If you are using ASP then use the browser to open a page with the following within the code.
TTP_USER_A GENT") %>
TTP_USER_A GENT")
<%= Request.ServerVariables("H
once you get the browser string then you can parse it out...
For example
<%
Dim sBrowserString, sBrowserType
sBrowserString = Request.ServerVariables("H
If InStr(sBrowserString, "WebTV") > 0 Then
sBrowserType = "WebTV"
ElseIf InStr(sBrowserString, "UniqueStringInSafari") > 0 Then
sBrowserType = "Safari"
ElseIf InStr(sBrowserString, "MSIE") > 0 Then
sBrowserType = "MSIE"
Else: sBrowserType = "Netscape"
End If
%>