Created
July 26, 2018 21:46
-
-
Save jamesmacfie/899b04471c81d0445d2015a147f86602 to your computer and use it in GitHub Desktop.
Only display refurbished Apple laptops with 16GB RAM and 512GB HDD
This file contains 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
// Post this in your console | |
[].filter.call(document.querySelector('.box-content').querySelectorAll('table'), (n) => { | |
if (n.innerText.indexOf('16GB') === -1 || n.innerText.indexOf('512GB') === -1) { | |
n.style.display = 'none'; | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment