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