Skip to content

Instantly share code, notes, and snippets.

@liximomo
Created June 5, 2016 14:56
Show Gist options
  • Save liximomo/0878d440f2a62eb43af42bb032081d49 to your computer and use it in GitHub Desktop.
Save liximomo/0878d440f2a62eb43af42bb032081d49 to your computer and use it in GitHub Desktop.
var img=new Image();
img.src="mm.jpg";
img.onload=function(){
var image = document.createElement('img');
image.src = img;
document.body.appendChild(image);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment