In jquery, I use the statement
$("#amtReqTxt").val(parseFloat(amount).toFixed(2));
When amount = 12, textbox
shows 12. But I want to show the value as 12.00 in textbox
. How can this be done?
In jquery, I use the statement
$("#amtReqTxt").val(parseFloat(amount).toFixed(2));
When amount = 12, textbox
shows 12. But I want to show the value as 12.00 in textbox
. How can this be done?