buenas.
tengo el siguiente codigo, pero en explore no funciona, y en firefox si funciona sin ningun problema
Código Javascript
:
Ver original<script type="text/javascript">
function operation(){
amount = document.getElementById("quantity").value;
//unitvalue =document.getElementById("priceunit").value;
//valueiva =document.getElementById("iva").value;
res = amount*60000;
totaliva = res*16/100;
totalvalue=res+totaliva;
document.getElementById("totalprisce").innerHTML = '$'+res
document.getElementById("totaliva").innerHTML = '$'+totaliva
document.getElementById("cant").innerHTML=amount
document.getElementById("totalvalue").innerHTML='$'+totalvalue
//valores para el submit
document.getElementById("totalvalue_submit").value=totalvalue
}
</script>
gracias de antemano.