Skip to content

Instantly share code, notes, and snippets.

@henriqueog
Last active October 26, 2017 11:20
Show Gist options
  • Save henriqueog/388077ddcf8912676966 to your computer and use it in GitHub Desktop.
Save henriqueog/388077ddcf8912676966 to your computer and use it in GitHub Desktop.
uncheck checkboxes into of element
$parent=document.getElementById('blockAttributes_table_jsListFULL_Instructor_249_1_body');
for (var $i = 0; $i < $parent.length; $i++) {
$rows = $parent.children[$i];
$rows.children[1].children[0].checked=false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment