I need help with the following code which doesn\'t work:
var timeoutID=0; var currentImage=0;//first image is position 0 in arrImages array var arrImages=[bla bla bla
If I remember correctly the image gets the width and height when it gets loaded. So I guess you could check the width if the image. And as long as that is 0 the image is not loaded.
'complete' is for native javascript object. so you should get javascript object from jQuery. like,
$('#myImg')[0].complete
or
$('#myImg').get(0).complete