Skip to content

Instantly share code, notes, and snippets.

@caseyw
Created August 13, 2014 14:12
Show Gist options
  • Select an option

  • Save caseyw/e9aec0c750871edd8daa to your computer and use it in GitHub Desktop.

Select an option

Save caseyw/e9aec0c750871edd8daa to your computer and use it in GitHub Desktop.
// 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