Quote:
Originally Posted by hardcopi
PHP Code:
document.getElementById("blank").innerHTML = out;
You appear to be overwriting the html of your div every iteration. Not sure in core javascript but in jquery it would be
PHP Code:
$('#blank').append(out);
A jsfiddle or pastbin would have been easier to debug though. 
|
You posted just before I updated the post to have inks to Pastebin instead of quotes, thank your for opinion, I'll see if that helps!