Skip to content

Instantly share code, notes, and snippets.

@paulund
Created February 23, 2013 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulund/5020051 to your computer and use it in GitHub Desktop.
Save paulund/5020051 to your computer and use it in GitHub Desktop.
Check for different versions of IE.
if(navigator.appVersion.indexOf("MSIE 6.")!=-1)
{
// IE 6 code
}
if(navigator.appVersion.indexOf("MSIE 7.")!=-1)
{
// IE 7 code
}
if(navigator.appVersion.indexOf("MSIE 8.")!=-1)
{
// IE 8 code
}
if(navigator.appVersion.indexOf("MSIE 9.")!=-1)
{
// IE 9 code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment