EJLD
Posts: 0
Joined: Sun Jun 08, 2014 11:03 pm

Silly checkbox

Hi, if anybody interested and/or struggling at getting its checkbox unchecked/checked, I got it done using the JS code via id instead of the JQuery.
1/ give an id to your box on click event = $(this).id = "boxName";
2/ then, check or uncheck with following codes respectively:
document.getElementById("boxName").checked = true;
document.getElementById("boxName").checked = false;

Evgene Karachevtsev
Posts: 12
Joined: Mon Apr 28, 2014 1:12 pm

Silly checkbox

Hello Eric,

Thank you for the update!

Return to “Issues”