I have a Javascript function that returns a value and places it in a read only textbox. This isnt working on safari, the text box remains empty, The functions works perfectly in Firefox and IE!
Here is some of the code.
the following returns the result.
Can you help?
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
- Doh
Here is some of the code.
the following returns the result.
Code:
var total
var discount
total = premsum + packsum
discount = premsum + totalpacksum
thisform.premoutput.value = premsum;
thisform.discountsum.value = total.toFixed(2);
thisform.totalsum.value = discount.toFixed(2);
Can you help?
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
- Doh