This is the Js Fiddler of the question because until it's run i don't see how this could possibly make sense. Loop of img src and i loop through them and place them in an img.src and load them and then append to an element. I have tried various other methods that just seems to not work and i have no idea why this would happen. Is it a problem with jsfiddler or is my code incorrect?
http://jsfiddle.net/shavyg2/GsQtn/embedded/result/
/*Slide show*/
var container=$(".imageContainer");
var imageList=["http://blogs.adobe.com/captivate/files/2011/09/HTML5.jpg", "http://www.hanselman.com/blog/content/binary/Windows-Live-Writer/HTML5-Support-for-Visual-Studio-2010---W_90C5/vshtml5_2.png", "http://photos4.meetupstatic.com/photos/event/d/e/0/0/event_117656832.jpeg", "http://e4dhtml5.azurewebsites.net/Content/html5man.jpg", "http://la-matrice.org/wp-content/uploads/2013/02/css3.png"];
var count=0;
for(var i=0;i<imageList.length;i++){
var image=new Image();
var number=i+0;
image.src=imageList[number];
container.append(image);
container.append(imageList[number]);
image.load();
count++;
}
container.append(count);
