This is my code now.
http://workshop.rs/demo/gallery-in-4-lines/
$('#thumbs').delegate('img','click', function(){
$('#largeImage').attr('src',$(this).attr('src').replace('thumb','large'));
});
But i want to fade how this example?
http://www.ak-solutions.de/demos/fader/
more slowly from the picture to the next picture?
I have try this code, But this is not the right.
$('#thumbs').delegate('img', 'click', function() {
$('#panel').attr('src', $(this).attr('src')).hide().fadeIn(1000);
});
jsBin demo
The modified CSS: