Last active
November 8, 2021 17:33
-
-
Save arturo182/df908d1c7952f4186c3653d9462cb22f to your computer and use it in GitHub Desktop.
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
tbody = document.querySelectorAll(".table-area tbody")[0]; | |
i = tbody.children.length; | |
while (i--) { | |
child = tbody.children[i]; | |
qty = child.children[3].firstChild.innerText.split('\n')[0]; | |
//console.log(qty); | |
qtyint = parseInt(qty); | |
// Change 3000 here to preferred qty | |
if ((qtyint < 3000) || (qty == "Discontinued")) | |
tbody.removeChild(child); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment