Hi everyone... new to all this and was looking for some pointers...
Right now I have a plain checkbox that looks more or less like this:
- <input type="checkbox" id="mycheck" onClick="clickthis(this,'pointsto')">
and the script it points to:
- function clickthis(box,code) {if (box.checked) {mycode} else {moremycode}}
It works fine as a plain checkbox, but as soon as I stick a label on it, it stops working.
I guess the jQuery label isn't letting the 'onClick' go though? Not sure where I should go from here.
Any help would be appreciated, thank you.