Blogs Tech stuff and many more...
if(ua.indexOf("MSIE") == -1){ this.version = 0; return 0; } if(ua.indexOf("compatible") == -1){ this.compatibilityMode = false; return 0; }else{ this.compatibilityMode = true; return 0; } }
// Create new object
var ieUserAgent = {
init: function () {
var ua = navigator.userAgent;
this.compatibilityMode = false;
};
// Initialize the ieUserAgent object
ieUserAgent.init();