The lowest browser my application supports is IE 7. I have some code that works fine in IE 8, but needs to be avoided in IE 7. There are a ton of questions/answers on here that indicate how to detect IE 7 with .browser but none that indicate how to detect only IE 7 with .support. The jQuery page detailing .support does not make it clear which supported features are present in which browsers, so not getting much help there.
The lowest browser my application supports is IE 7. I have some code that
Share
The reason they deprecated .browser is to try to encourage us to test for features instead of browsers.
However.. if you still need to…
Have you considered using H5BP’s conditional
<html>trick and then just testing for that? Header:Then in jQuery,