Skip to content

Instantly share code, notes, and snippets.

@jameslkingsley
Created October 29, 2016 00:48
Show Gist options
  • Save jameslkingsley/93863fe7c532dbc6488e4b42374355a4 to your computer and use it in GitHub Desktop.
Save jameslkingsley/93863fe7c532dbc6488e4b42374355a4 to your computer and use it in GitHub Desktop.
$(document).ready(function(e) {
$("#video-next, #video-prev").click(function(event) {
var index = (function(i){return (i < 0) ? 6 : (i > 6) ? 0 : i})($("#video-player").data("index") + $(this).data("dir"));
$("#video-player").attr({'data-index': index, 'src': (["https://youtube.com/embed/XFTR70j_8u0","https://youtube.com/embed/Eb_wyy_PaR0","https://youtube.com/embed/1C_n9RryuV0","https://youtube.com/embed/IsXmPVvXIjA","https://youtube.com/embed/eAoVwCSo_Qo","https://youtube.com/embed/KzuMTaiAr_0","https://youtube.com/embed/BZgtJcgfU4k"])[index]});
event.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment