jQuery(function() {
jQuery("ul.logos-sprite-icon-wrap li a.logos-icon").hover(function() {
jQuery(this).animate({
'padding-top': '0px',
'padding-bottom': '5px',
}, 500);
}, function() {
jQuery(this).clearQueue();
jQuery(this).clearQueue().animate({
'padding-top': '5px',
'padding-bottom': '0px',
}, 500);
});
});
then after i use jQuery share-basket-icon plugins then the error was come to…
jQuery(this).clearQueue is not a function
jQuery(this).clearQueue();
Edit: see comments; this is totally wrong. However, since this was added in 1.4, is it possible that you’re using an older version of jQuery?
It looks like
clearQueueis indeed not a function, but a parameter to.stop():http://api.jquery.com/stop