Skip to content

Instantly share code, notes, and snippets.

@buesing
Created November 26, 2014 19:52
Show Gist options
  • Save buesing/f0a9c4d6762c2068f081 to your computer and use it in GitHub Desktop.
Save buesing/f0a9c4d6762c2068f081 to your computer and use it in GitHub Desktop.
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
enc = xmlhttp.responseText.split("\n");
for (var i = 0; i < enc.length; i++) {
ads[i].src = "data:image/jpeg;base64," + enc[i];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment