Created
June 29, 2019 12:42
-
-
Save szmeku/0c1f6d998110880e2dd0a34cc35dcaa5 to your computer and use it in GitHub Desktop.
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
Array.from(document.querySelectorAll('.result')) | |
.filter(e => e.querySelector('.totalPrice').textContent.split(' ')[0] > 100) | |
.forEach(e => e.remove()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment