Skip to content

Instantly share code, notes, and snippets.

@nash403
Created March 22, 2017 14:18
Show Gist options
  • Save nash403/a069b80aee3f563e20ed6b22b0ea07f5 to your computer and use it in GitHub Desktop.
Save nash403/a069b80aee3f563e20ed6b22b0ea07f5 to your computer and use it in GitHub Desktop.
Preload images in JS
let img = new Image();
img.onload = () => {
console.log('youpiiii img preloaded !')
};
img.src = 'some_url';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment