views:

28

answers:

1

On mobile devices such as the iPad, I would like to disable a feature that only works if position:fixed is supported. Is there a way to detect these devices without using the user agent string? The reason is that I would like to avoid searching for iPad, iPhone, iPod, Android, etc if possible.

A: 
James Skidmore
Apparently this returns a false positive in Mobile Safari (http://stackoverflow.com/questions/973875/jquery-check-if-browser-support-position-fixed).
James Skidmore