checkbox onclick pass the checkbox code example
Example 1: checkbox onclick pass the checkbox
function handleClick(cb) {
setTimeout(function() {
display("Clicked, new value = " + cb.checked);
}, 0);
}
Example 2: checkbox onclick pass the checkbox
function handleClick(cb) {
setTimeout(function() {
display("Clicked, new value = " + cb.checked);
}, 0);
}