I want to use <input> as a editable box with auto width.
This is what I did so far:
<div>
<table>
<tr>
<td>aaaa</td>
<td>bbbb</td>
</tr>
<tr>
<td><input type="text" value="this_box_i_want_to_have_auto_td_width"/></td>
<td><input type="text" value="sometextsometext"/></td>
</tr>
</table>
</div>
any idea how to make it resize when I type more text into input box?