Hey guys, Im trying to add a fadein effect while changing my background image using .css in Jquery I dont really know much about java, hoping someone can help me out here!
The code for changing css background image is pretty simple here:
$(document).ready(function(){
$("#button01").click(function () {
$("#content_wrapper").css({backgroundImage : 'url(image/staff/shinji.jpg)' } );
});
});
It's like a image gallery, Im just showing it in css background image everything works fine, but I was wondering if it's possible to add the fadeIn or fade-to effect.