Skip to content

Instantly share code, notes, and snippets.

@erikfrerejean
Last active August 29, 2015 14:00
Show Gist options
  • Save erikfrerejean/11217941 to your computer and use it in GitHub Desktop.
Save erikfrerejean/11217941 to your computer and use it in GitHub Desktop.
quick select
jQuery('input[type="checkbox"]').each(function(index, elem) { jQuery(elem).prop('checked', 'checked'); });
(function() {
var aa = document.querySelectorAll("input[type=checkbox]");
for (var i = 0; i < aa.length; i++){
aa[i].checked = true;
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment