i have a label and input outputted from the shopping cart we are using. i dont want to hack the core of the cart to change the way it outputs. so the code is thus with the input inside the label:
<div id="FormField_29" class="FormField">
<label for="FormField_29_0"><input type="checkbox" id="FormField_29_0" name="FormField[2][29][0]" value="Yes" class="subscribeBox FormFieldOption" /> Yes</label>
</div>
i am trying to hide the word "yes" in the label, but i cant seem to select it. its not a sibling of the input since its a label. and if i select parent not input it still makes the whole label with the input disappear. i tried next and it wont select it, since dom-wise the text isnt really next.. i cant use orphan since its not an orphan being a part of label. what am i missing? thanks!