Skip to content

Instantly share code, notes, and snippets.

@bermanboris
Last active July 5, 2017 12:16
Show Gist options
  • Save bermanboris/6d9678053eec1f1c5ea5546cf7d7bfef to your computer and use it in GitHub Desktop.
Save bermanboris/6d9678053eec1f1c5ea5546cf7d7bfef to your computer and use it in GitHub Desktop.
Hide restaurants with rating less than 10 in https://www.mishlohim.co.il
// Copy and paste this code to the Developer Console
$(".link span").each(function(index,elem) {
if($(this).text() < 10) {
$(this).parent().parent().parent().parent().parent().parent().hide()
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment