Skip to content

Instantly share code, notes, and snippets.

@bradcerasani
Created September 17, 2014 15:13
Show Gist options
  • Save bradcerasani/c1727bbe8b70f23a916b to your computer and use it in GitHub Desktop.
Save bradcerasani/c1727bbe8b70f23a916b to your computer and use it in GitHub Desktop.
Enable play/pause with spacebar on Overcast.fm [requires dotjs]
// requires https://github.com/defunkt/dotjs
var player = $('#audioplayer').get(0);
$(document).keypress(function(e) {
if(e.which == 32) {
if (player.paused) {
player.play();
} else {
player.pause();
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment