Last active
July 5, 2017 12:16
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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