Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've used the code below if I need to detect Firefox:

var firefox = !(window.mozInnerScreenX == null);

I'm curious if there is something similar to detect webkit browsers without checking the user agent string. Like checking a specific feature only webkit browsers have?

share|improve this question

1 Answer

up vote 4 down vote accepted

Go to the console in Chrome and type window.webkit - the autocompletion will show you a stack of properties that should be Webkit specific (e.g. webkitRequestAnimationFrame, webkitAudioContext, etc)

share|improve this answer
Thanks, that exactly what I was looking for. – hybrid Apr 16 '12 at 15:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.