Image caption with opacity fade.
Ive used this tutorial:
http://web.enavu.com/tutorials/making-image-overlay-caption-using-css/
And added this jquery code to make the fading:
- $("div.wrapper").mouseover(function() {
- $('div.wrapper').fadeTo("slow",1);
-
- }).mouseout(function(){
- $('div.wrapper').fadeTo("slow",0.5);
- });
But when I hover over the Wrapper DIV the Description DIV also fades.
I want the Description DIV to remain at 100 opacity even when I hover over the wrapper.
Is that possible?