Answers for "how to write the function that click checkbox for specific item js"

2

javascript check checkbox programmatically

// Check
document.getElementById("checkbox").checked = true;

// Uncheck
document.getElementById("checkbox").checked = false;
Posted by: Guest on September-12-2020

Code answers related to "how to write the function that click checkbox for specific item js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language