Skip to content

Instantly share code, notes, and snippets.

@mynameispj
Created October 7, 2012 23:18
Show Gist options
  • Save mynameispj/3849934 to your computer and use it in GitHub Desktop.
Save mynameispj/3849934 to your computer and use it in GitHub Desktop.
jQuery Snippet: Do something in a particular version of IE
$(document).ready(function() {
if ($.browser.msie) {
var browserType = $.browser;
//change 7.0 in the line below to 6.0, 8.0, 9.0, etc, depending on targeted version
if (browserType.version == 7.0) {
//do stuff
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment