Sono alle prese con questo script che pare funzionare ma non visualizza i decimali..
Un piccolo aiutino ?
grazie infinite!!
Codice:
<form>
<span class="givemegood">
<input type="checkbox" name="choice" value="150.00" onclick="clickCh(this)">+€ 150.00<br>
</span>
<span class="givemegood">
<input type="checkbox" name="choice" value="100.00" onclick="clickCh(this)">+€ 100.00<br>
</span>
<span class="givemegood">
<input type="checkbox" name="choice" value="4.150.00" onclick="clickCh(this)"> +€ 4.150.00<br>
</span>
<input id="total" type="text" name="total" value="0">
</form>
<script language="JavaScript" type="text/javascript">
var total = document.getElementById("total")
function clickCh(caller){
if(caller.checked){
add(caller)
} else {
subtract(caller)
}
}
function add(caller){ total.value = total.value*1 + caller.value*1}
function subtract(caller){ total.value = total.value*1 - caller.value*1}
</script>
Un piccolo aiutino ?
grazie infinite!!