i have a input field and links with values. when click on a link the value go to the input field. when clicking a other link the value is not count with the value that already is in the input field. example:
<form name="odenen_form">
<input type="text"
class="input_text"name="odenen_miktar"id="odenen_miktar"
style="position:absolute;left:100px;top:50px;width:200px">
</form>
<a onClick="document.odenen_form.odenen_miktar.value+='10'">10</a>
<a onClick="document.odenen_form.odenen_miktar.value+='20'">20</a>
Now when i click on the first link the input field shows me 10 when i click again on the first link the input field shows 1010
Wat i want is 20 as result