Hi There,
I currently have a checkbox variable with 8 different options or so.
I'm having some trouble having a field in a specific row appear when one of the tickboxes in the checkbox is ticked.
First of all I'm hiding my input field ID :
#Field14\(1\) { display:none; }
I assumed the below would work : (#Field26-0 is the ID of my tickbox)
$("#Field26-0").on("click",function() { $("#Field14(1)").css({display: "block"}); });
but I'm getting an error relating to the syntax of Field14(1). I have tried it in the same format as the CSS with the \ \ but no such luck. Any ideas? I've tried .toggle as well so it will show / hide on the tickbox click but still no luck