Skip to content

Instantly share code, notes, and snippets.

@l4u
Created July 10, 2013 16:37
Show Gist options
  • Save l4u/5967892 to your computer and use it in GitHub Desktop.
Save l4u/5967892 to your computer and use it in GitHub Desktop.
filter fiverr items by rating counts
$(".gig-item").each(function(){
item = $(this);
rating = item.find(".ratings-count");
rating_int = (parseInt(rating.html(),10));
if (rating_int < 2000) {
item.remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment