I'm trying to empty the HTML of this input and label via jQuery.
<input id="inputclass" type="checkbox">
<label for="labelclass">Text</label>
For the input it seems to be as simple as doing $(".inputclass").html("");
with jQuery, but what about for targeting the label?