Skip to content

Instantly share code, notes, and snippets.

@indexzero
Created October 23, 2014 04:02
Show Gist options
  • Select an option

  • Save indexzero/8cd3179756f67b0c2524 to your computer and use it in GitHub Desktop.

Select an option

Save indexzero/8cd3179756f67b0c2524 to your computer and use it in GitHub Desktop.
Show titles you've rated with only a specific rating in Netflix
function showRating (target) {
$('#ratingHistorySection .retable li').each(function (el) {
var child = $(this).find('.rating .starbar');
var rating = $(child).attr('data-your-rating');
if (rating != target) {
$(this).hide();
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment