Skip to content

Instantly share code, notes, and snippets.

@bjankord
Created December 16, 2012 23:50
Show Gist options
  • Save bjankord/4314336 to your computer and use it in GitHub Desktop.
Save bjankord/4314336 to your computer and use it in GitHub Desktop.
Custom UAs with JavaScript
navigator.__defineGetter__('userAgent', function(){
return 'foo' // customized user agent
});
alert(navigator.userAgent); // 'foo'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment