I want to load a image in a div at regular interval, say every second or two
I did some silly attempts like this
$(document).ready(function() {
setTimeout('LoadImages()',100 );
});
function LoadImages()
{
$('#Images').load('get_image.htm'); // get_image.htm displays image
}
</script>
<body>
<div id="Images"><div>
I know its all wrong, but what needs to be done to get this working ?
if you want to call
LoadImages()after finish image load then