Language Basics JavaScript DHTML



Prices Demo

function calculation() {
  var number= document.prices.quantity.value;
  total = "" + Math.round((number*12.95)*100)/100;
  if (total.indexOf(".") == -1) 
    total += ".00"; 
  else if (total.indexOf(".") == total.length-2) 
    total += "0"; 
  document.prices.subtotal.value = total += "$";
}





  0
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10