How do I check if browser supports position:fixed using jQuery. I assume I have to use $.support I think, but how?
Thank you for your time.
|
How do I check if browser supports position:fixed using jQuery. I assume I have to use $.support I think, but how? Thank you for your time.
| |||||||
feedback
|
|
The most reliable way would be to actually feature-test it. Browser sniffing is fragile and unreliable. I have an example of such test in CFT http://kangax.github.com/cft/#IS_POSITION_FIXED_SUPPORTED. Note that the test should be run after | |||||||||||||
feedback
|
|
Well, IE6 doesn't support You could go down the conditional comments route:
| |||||||||||
feedback
|
|
You could check if position exists by making a code like this:
Since position exists in all main browser this will always return true. I imagine there isn't a way to check the possible values of position, so you'll have to check which browser and which version the user are viewing your page as Paolo Bergantino said. | |||
|
feedback
|
|
| |||
|
feedback
|
|
I find that mobile safari (specifically iOS 4.2 via the iOS Simulator on OSX) refuses to scroll anywhere unless you wait a few miliseconds. Hence the false positive. I wrote a quick jquery plugin to work around it:
| ||||
|
feedback
|