I have a way to find the version of IE... I need to find out if the current version is IE8:
if (navigator.appVersion.indexOf("MSIE 8.")!=-1)
{
//do things
}
Is this an okay way to do this? I can't find much about doing this, but it seems pretty accurate to me.