In this image below it is normal now, but every time I move the mouse over it is placed the element figcaption
in the image, this figcaption
used to paint the image of black.
Here, the image before I hover the mouse with your $('img')
AfterIhoverthemouseoverititgetsafigcaption
overit,becauseIusedthisfigcaption
topaintinblack.
Imagewith$('figcaption')
active.
My question is: How can I click on the image and select $('img')
?
I do not want to select the figcaption
that is above the image, because with it I will not be able to open my picture box.
$('img').bind('click',function() { $(this).$('caixabox').show('slow') }
);