I\'m trying to create a fadeIn/Out effect on a site I created (edit: site url deleted)
Everything works great except when you click on one of the colors in the color
The solution that worked for me:
var image = $('#image-holder'); image.fadeOut(1000, function () { image.css("background", "url('images/design-" + newColor + ".jpg')"); image.fadeIn(1000); });