Hi all,
i have these images in table's cells:
and this form below:
The textbox value will be obtained by clicking
on the images above so:
the final value of the textbox should be:
Hope you can help me.
Thanks in advance,ronnie.
i have these images in table's cells:
Code:
<table>
<tr>
<td>
<img src="image1.gif" />
</td>
<td>
<img src="image2.gif" />
</td>
<td>
<img src="image3.gif" />
</td>
</tr>
</table>
Code:
<form id="myform" name="myform">
<input name="mytextbox" value="mytextbox">
</form>
on the images above so:
Code:
image1 will add "text1" (without quotes) to the textbox
image2 will add "text2" (without quotes) to the textbox
and so on...
Code:
text1,text2,tex3,....
Thanks in advance,ronnie.