Page 3 of 3

Silly checkbox

Posted: Sat May 30, 2015 7:26 am
by EJLD

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;


Silly checkbox

Posted: Sat May 30, 2015 2:03 pm
by Evgene Karachevtsev

Hello Eric,

Thank you for the update!