Hello
When working with jQuery, the following code can be used to darken an image. On the contrary, how would you go about brightening up an image?
$(this).hover(function() {
$(this).stop().animate({ opacity: 0.5 }, 500);
},
function() {
$(this).stop().animate({ opacity: 1.0 }, 500);
});