I'm writing a simple jQuery plugin that displays images with a specific class in the center of the screen (when clicked, full-sized) with a gray overlay around the image. When we click on the overlay it disappears. Now I use this piece of code:
$("#overlay").click(function(){
$(this).animate({
opacity: "0"
}, 500, function(){
$(this).css({
display: "none"
});
});
$("#imgcontainer").animate({
opacity: "0"
}, 500, function(){
$(this).css({
display: "none"
});
});
});
imgcontainer holds our image. I was trying to use this easier code, but it doesn't work:
$("#overlay").click(function(){
$(this).add("#imgcontainer").animate({
opacity: "0"
}, 500, function(){
$(this).css({
display: "none"
});
});
});
Why it doesn't work?
UPDATE:
Correct code:
$("#overlay").click(function(){
$("#imgcontainer").add(this).fadeOut();
});
Thanks a lot for replies. This behavior (bug?) is very surprising indeed.