I ve made this code. It changes the background image when I mouseover a box. However, I want the picture that comes in, to fade in. How do I do that? :)
$(document).ready(function(){
$("#box1").mouseover(function(){
$("#background").addClass("hover1");
$("#content").html(box1);
});
$("#box1").mouseout(function(){
$("#background").removeClass("hover1");
$("#content").html(content);
});
});