javascript - How to add i tag after input tag -
my source code is:
<div id="id1" class=class1> <label><input type="checkbox" name="something">uh, label</label> </div>
i add tag after input tag. source code looks like:
<div id="id1" class=class1> <label><input type="checkbox" name="something"> <i class="genius"></i> uh, label</label> </div>
is possible javascript?
wiki
Comments
Post a Comment