What she said

Just Loop on

I can’t be the only one who listens to a song on loop. White waiting for Tommy and Zi to wrap up work, here is something embarrassingly simple that does the looping, if you uses an audio tag and happen to have Zepto/jQuery like I do that is.

1 2 3 4
$('audio').on('ended', function(){
  this.currentTime = 0;
  this.play();
})

Comments