Can anyone help me to figure this out ?
When I use the latest (or a newish) version of jQuery, the small script below works fine. However, when I use older versions
You must use bind instead of on, as on was only introduced in jQuery 1.7.
$(document).ready(function () {
$(".theImage").bind("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);
})
})