I am getting the following error in Chrome dev console:
Uncaught TypeError: Cannot read property 'msie' of undefined
My understanding is that it is because .browser
is now deprecated in jQuery however I am using the latest version of jQuery tools and it is still giving the error, I checked in the js
file and it is there.
How can I get around this so it does not give the error?
You can check out this solution by AJ. It's pretty straightforward, just copy and paste the following lines of code.
jQuery.browser = {};
(function () {
jQuery.browser.msie = false;
jQuery.browser.version = 0;
if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
jQuery.browser.msie = true;
jQuery.browser.version = RegExp.$1;
}
})();
Reference: