Skip to content

Instantly share code, notes, and snippets.

@starzonmyarmz
Created September 6, 2012 16:33
Show Gist options
  • Save starzonmyarmz/3658227 to your computer and use it in GitHub Desktop.
Save starzonmyarmz/3658227 to your computer and use it in GitHub Desktop.
Play/Pause bandcamp.com with space key
// Press space to toggle play/pause state in bandcamp
if (window.location.host.indexOf('bandcamp.com') !== -1) {
$(document).keyup(function(e){
if (e.keyCode === 32) {
$('.playbutton').click();
}
return false;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment