<div id="one">
<label for="number">Number</label>
<div id="two">
<input id="number" type="text" name="number">
</div>
</div>
This displays the following:
- Number
- [input]
Is there a way to show this instead?
- Number [input]
Can I achieve this using jQuery? (without modifying html)