How can i make this code place a decimal point at the end of my total like this
.00
here’s the code
<!-- Begin
function fido (form) {
form.box1.value = "$ " + form.amount.value65;
form.box2.value = "$ " + form.amount.value62;
form.box3.value = "$ " + form.amount.value59;
form.box4.value = "$ " + form.amount.value56;
}
// End –>