DEVFYI - Developer Resource - FYI

To set all checkboxes to true using JavaScript?

JavaScript Interview Questions and Answers


(Continued from previous question...)

65. To set all checkboxes to true using JavaScript?

//select all input tags
function SelectAll() {
var checkboxes = document.getElementsByTagName("input");
for(i=0;i<checkboxes.length;i++) {
if(checkboxes.item(i).attributes["type"].value == "checkbox") {
checkboxes.item(i).checked = true;
}
}
}

(Continued on next question...)

Other Interview Questions