I just ran into the same problem. Instead of changing jQuery (yes, I understand that this is a decent patch in the short term), if necessary, contact the author of the Wordpress or Wordpress plugin / theme. They can fix the problem by using string values ββinstead of numeric values ββwhen they call .animate () or other effects. For instance:
$(this).animate({opacity:0.5},500);
Must be:
$(this).animate({opacity:"0.5"},"500");
In reality, jQuery has to solve the problem in order to remain a cross browser, but in the meantime it is a solution.
source share