Possible Duplicate:
Unable to get textfield value using jQuery
i have a invoice where i am iterating values from a list. There i have textbox named subtotal , this textbox holds some number. And another textbox named discountamt ,in this textbox user will enter discount in number,which will be calated as discountamt percentage subtotal .i.e(discountamt % subtotal) eg. 10% of subtotal.
And the calculated amount should reduce from subtotal and should set in anther textbox named overalltotal .
Please see my below image which shows how my output should be...

Below is my code, where i am trying to implement this
<tr>
<td height="1%" valign="top" width="100%">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr style="height: 10px;">
<td width="100%" align="right" colspan="5" style="font-weight: b">
Sub Total. <s:textfield name="subtotal" value=" " size="5"/>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="1%" valign="top" width="100%">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr style="height: 10px;">
<td width="100%" align="right" colspan="5">
Discount:<sj:textfield name="discountamt" size="1" placeholder=" %"/>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="1%" valign="top" width="100%">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr style="height: 10px;">
<td width="100%" align="right" colspan="5" style="font-weight: bolder;">
<s:set var="total" value="%{0}" />
Over All Total Amount: <s:textfield name="overalltotal size="4"></s:textfield>
</td>
</tr>
</table>
</td>
</tr>
UPDATE Correct Answer:
$('input[name="discountamt"]').keyup(function()
{
var disamount=$('[name=discountamt]').val();
var linetotal = $('[name=subtotal]').val();
var priceafterdisc=linetotal-(((disamount)/100)*linetotal);
$('[name=overalltotal]').val(priceafterdisc);
});
Please help me to solve this issue...

book title Twoto0.00, or from setting adiscountof100%)? Also, since you're apparently calculating client-side, what event should trigger the calculation? – pete Nov 18 '12 at 13:20