I am trying to target IE7 with an if statement in a jQuery function. My code to this specific bit is:
if($.browser.msie && $.browser.version.substring(0) == "7") {
//Do something
}
Is this correct?
Try:
if($.browser.msie && parseInt($.browser.version, 10) == 7) {
//Do something
}
And as @Andrew Whitaker comments, instead of targeting a specific browser, consider detecting features instead.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With