誰かが私がこれを理解するのを手伝ってくれる?
最新(または新しい)バージョンのjQueryを使用すると、以下の小さなスクリプトが正常に機能します。ただし、古いバージョンのjQueryを使用すると、スクリプトにon
関数が存在しないと表示されます。
古いバージョンのjQueryでは機能しない私のスクリプトは次のとおりです。
$(document).ready(function () {
$(".theImage").on("click", function(){
// In the event clicked, find image, fade slowly to .01 opacity
$(this).find("img").fadeTo("slow", .01).end()
// Then, of siblings, find all images and fade slowly to 100% opacity
.siblings().find("img").fadeTo("slow", 1);
})
})
どんな種類の助けもありがたいです。