I just found something using the IE10 developer Tools. There I get upon loading the page the following error message:
jQuery(“.featured-thumb”).hoverIntent(function() {
jQuery(‘.img-meta’,this).slideDown(300,’linear’);
jQuery(‘.img-meta-link’,this).css(‘margin-right’,’50px’);
jQuery(‘.img-meta-link’,this).animate({‘margin-right’:’0px’},500);
},
function() {
jQuery(‘.img-meta-link’,this).animate({‘margin-right’:’50px’},500);
//jQuery(‘.img-meta-link’).css(‘margin-right’,’50px’);
jQuery(‘.img-meta’,this).fadeOut(‘fast’);
//jQuery(‘.img-meta-link’).stop(true,false);
});
The Object does not Support the method “hoverIntent”
Does anyone know how to fix this?