Bonjour,
Je suis débutante en javascript et j'aimerai poser une question toute simple :)
Comment je pourrai charger un spinner dans un textarea tout prêt lors du lancement de ma page html.
Sachant que le code de mon spinner est comme suit:
<form>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td rowspan="2"><input type="text" name="number" value="0" style="width:50px;height:23px;font-weight:bold;" /></td>
<td><input type="button" value=" /\ " onclick="this.form.number.value+=0.1;" style="font-size:7px;margin:0;padding:0;width:20px;height:13px;" ></td>
</tr>
<tr>
<td><input type="button" value=" \/ " onclick="this.form.number.value--;" style="font-size:7px;margin:0;padding:0;width:20px;height:12px;" ></td>
</tr>
</table>
</form>
Merci de bien vouloir m'aider!
Bonne journée
