Skip to content

24 ways to impress your friends

Vote down?

Eduardo Mozart de Oliveira

Hi Drew!
I tried to comment on jQuery plugin page (at the bottom of the post) but i think the comments are disabled there.
I just did a little hotfix on jQuery version: jquery.browser become deprecated on jQuery 1.9.
The solution is replace line #11
<code>
//if (jQuery.browser.msie &amp;&amp; parseInt(jQuery.browser.version, 10) < 7 &amp;&amp; parseInt(jQuery.browser.version, 10) > 4) {
</code>
With
<code>
if(navigator.userAgent.match(/MSIE 6.0/i)) {
</code>
Again, thank you for this fix! It is amazing!