Hi; I have an image gallery and I want to add fade effect, How can I do do this in this code?
$(document).ready(function() {
$(".gallery div").mouseover(function(){
$(".gallery div").removeClass("current");
$(this).toggleClass("current");
});
});
Thanks in advance