Wordpressテーマのヘッダーに含まれていると、小さな背景アニメーションスクリプトで以下に示すエラー(73TypeError)が発生し、スクリプトが壊れます。スクリプトがWordpress以外のページに含まれている場合、エラーは表示されません。
スクリプトは次のとおりです。
$(function() {
$(".bottom").hover( function () {
$(this).animate( {
backgroundPosition : '0px 35px'}
, 300); }
, function () {
$(this).animate( {
backgroundPosition : '0px 0px'}
, 600); }
);
}
);
誰かがこのエラーの原因についてアドバイスできますか?
ありがとう、
ニック