mtwallet
mtwallet

Reputation: 5096

Target IE7 with jQuery

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?

Upvotes: 13

Views: 17188

Answers (1)

karim79
karim79

Reputation: 342795

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.

Upvotes: 37

Related Questions