Autoplay/loop RapGenius album streams e.g. http://genius.com/albums/Watsky/All-you-can-do
$.each(mejs.players, function(i, p) { | |
p.media.onended = function() { | |
mejs.players[(i == mejs.players.length - 1 ? 0 : i + 1)].play() | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Run this in your browser console and the album will loop... someone can turn this into a bookmarklet, I guess.