Advertisement
DvDty

IMDB Popular Real Precentage

Apr 25th, 2019
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let notReleasedCount = 0;
  2. $('.ratingColumn.imdbRating').each(function () {
  3.     if (!$(this).text().trim()) {
  4.         notReleasedCount++;
  5.     }
  6. });
  7.  
  8. $('.seen-size').text(100 - notReleasedCount);
  9.  
  10. let precent = Math.round((100 - notReleasedCount) / 100 * $('.seen-count').text());
  11. $('.seen-pct').text('(' + precent + '%)');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement