Skip to content

Instantly share code, notes, and snippets.

@cacheleocode
Created July 8, 2014 23:19
Show Gist options
  • Select an option

  • Save cacheleocode/776ffd1b3b3f9d1f1548 to your computer and use it in GitHub Desktop.

Select an option

Save cacheleocode/776ffd1b3b3f9d1f1548 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
var index = $("#player").data("value");
var container = $("#playlist");
var scrollTo = $('#playlist a:nth-child(' + index + ')');
container.scrollTop(scrollTo.offset().top - container.offset().top + container.scrollTop());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment