I have a small JavaScript function that is supposed to return the IE version.
Problem is, when I publish and view the site this function is returning 7.
I am viewing the site with IE 8.0.7600.16385.
What's going on?
function getIEVersionNumber() {
var ua = navigator.userAgent;
var MSIEOffset = ua.indexOf("MSIE ");
if (MSIEOffset == -1) {
return 0;
} else {
return parseFloat(ua.substring(MSIEOffset + 5, ua.indexOf(";", MSIEOffset)));
}
}
MSIEOffset + 6? :D – rockerest Jul 8 '11 at 18:11alert(navigator.userAgent)to see what the page is getting. – josh.trow Jul 8 '11 at 18:12navigator.userAgentcontain? – Kristian Antonsen Jul 8 '11 at 18:13navigator.userAgentit reports IE 8. gotta be compatibility mode. – rockerest Jul 8 '11 at 18:16