Sea Sun

Sea Sun

  • NA
  • 10
  • 3.8k

Showing result of in, esle statement in box

Mar 14 2015 2:32 PM
How do I show the answer to this in a box??
 
function multiply()
   {
  if(total < 10000)
  {
   commission = total * 0.001;
  }
  else
  {
   commission = total* 0.0008;
  }
   if (commission<5) commission =5;
   
   var total_commission =commission + total;
      document.getElementById("commission").value = total_commission;
 }

Answers (2)