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
Why not use jQuery to inject the markup that you need?
var $image_holder = $('#imageHolder'),
$carousel_container = $('').attr('id', 'carousel_container'),
images = ['first.jpg', 'second.jpg', 'third.jpg'];
for ( var i=0; i ').attr('src', images[i]).appendTo($carousel_container);
}
$carousel_container.insertAfter($image_holder);
$image_holder.hide();