Skip to content

Instantly share code, notes, and snippets.

@atleastimtrying
Created February 14, 2013 12:46
Show Gist options
  • Save atleastimtrying/4952530 to your computer and use it in GitHub Desktop.
Save atleastimtrying/4952530 to your computer and use it in GitHub Desktop.
preloading an image in Coffeescript
src = 'whatever.png'
img = document.createElement 'img'
img.src = whatever
img.onload = ->
console.log 'img loaded'
document.body.appendChild img
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment