Created
August 13, 2014 14:12
-
-
Save caseyw/e9aec0c750871edd8daa 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
| // Find the third td of each tr and see if the IP starts with X, if so lets check the box for removal | |
| $("table.ACCtable2 tr td:nth-child(3)").each(function() { | |
| $ipNode = $(this); | |
| if ($ipNode.text().indexOf(' XXX.XXX.XXX.') >= 0) { | |
| $ipNode.prev().prev().children('input').prop('checked', true); | |
| } | |
| }); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment