I use the following snip of a script:
if ($.browser.msie && $.browser.version < 9) {
extra = "?" + Math.floor(Math.random() * 3000);
}
It works fine with jQuery 1.8.3.
Now I updated jQuery to the new version 1.9.1 to use a new script.
Now I get the following error:
TypeError: Cannot read property 'msie' of undefined
I read the change log of the new jQuery version, but nothing should have changed
with msie
Any known bugs, tips or proposals?