Reputation: 261
I was using Jquery 1.4.4.
I have updated to 1.10.2.
I am getting this errors:
jquery.ba-bbq.js
browser = $.browser,
mode = document.documentMode,
is_old_ie = browser.msie && ( mode === undefined || mode < 8 ), //browser is undefined
jquery.color.js
jQuery.isNaN // jQuery.isNaN is not a function
Upvotes: 0
Views: 166
Reputation: 19457
The jQuery BBQ project seem to be have been last updated in 2010.
The plugin supports
jQuery Versions 1.3.2, 1.4.1, 1.4.2
Browsers Tested Internet Explorer 6-8, Firefox 2-3.7, Safari 3-4, Chrome 4-5, Opera 9.6-10.1.
So, the new version of jQuery is not supported. Also, note that 1.4.x to 1.10.x is quite a jump. There are several breaking changes within the code.
Upvotes: 1