I have the following:
<input type="checkbox" class="oDiv" id="Parent" name="divcorp[]" value="Parent"/>
<label for="Parent">Parent</label>
I can remove the checkbox
using the following, which works correctly:
$( "#Parent" ).remove();
However, how could I also remove the associated label for this checkbox?
You can use attribute equal selector
Live Demo
$('label[for=Parent]').remove();
Description: Selects elements that have the specified attribute with a value exactly equal to a certain value.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With