Skip to content

Instantly share code, notes, and snippets.

@drewlesueur
Created November 23, 2010 11:34
Show Gist options
  • Save drewlesueur/711632 to your computer and use it in GitHub Desktop.
Save drewlesueur/711632 to your computer and use it in GitHub Desktop.
example coffeescript for iphone audio tag
$(document).ready () ->
#alert screen.height
audioElement = document.createElement('audio');
audioElement.setAttribute 'src', 'audio/star_good.m4a'
audioElement.addEventListener 'canplay', () ->
alert 'canplay'
audioElement.controls = false
document.body.appendChild audioElement
audioElement.oncanplay = () ->
console.log "can play"
$(audioElement).bind 'oncanplaythrough' , () ->
console.log "canplay thru"
audioElement.load();
audioElement.play();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment