I want to wrap a label around plain text that doesn't have something to easily target it.
For example, this:
<div class="checbox">
<input type="checkbox">
some text
</div>
Should become:
<div class="checbox">
<input type="checkbox">
<label>some text</label>
</div>
If I could modify the HTML this would be trivial, but I cannot.
With jQuery how could I wrap this "some text" with a label?