Does a reliable method for detecting IE browser version exist? So far I have tried.
- IE Conditional comments, not reliable
- User Agent HTTP request header, not always set
My next option was to try out javascript with something like
var nVer = navigator.appVersion;
var nAgt = navigator.userAgent;
var browserName = navigator.appName;
var fullVersion = ''+parseFloat(navigator.appVersion);
var majorVersion = parseInt(navigator.appVersion,10);
But will javascript always have access to this information?