Skip to content

Instantly share code, notes, and snippets.

@gerbenvandijk
Created February 25, 2013 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gerbenvandijk/5029207 to your computer and use it in GitHub Desktop.
Save gerbenvandijk/5029207 to your computer and use it in GitHub Desktop.
Detect safari on windows
safari = ($.browser.webkit && !(/chrome/.test(navigator.userAgent.toLowerCase())));
windows = (navigator.userAgent.indexOf("Win")!=-1);
if (safari && windows) {
alert('this is safari on windows');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment