i would like to get a resizeable textfield. You can see the Table and i have there a Input Text in HTML. The content depends on a calculation and i don't know how long the String would be. Is it possible to auto-resize the width of the input type "text" in a dependence to the represented content in the field?
Thanks for your help.
Here you can see my sample.
<table class="returnTable" style="overflow: auto">
<tr>
<td class="fett">Kalkulierter Hash-Wert:</td>
</tr>
<tr>
<td><input type="text" style="overflow: auto; resize: both" value="<?php if(isset($_POST['hashWert'])){echo $_POST['hashWert'];} ?>"</td>
</tr>
</table>