Skip to content
Loading
Getting result in box from a function with conditions
  • But how would I make the answer show in a box??? I have the button for "commission %" but now my goal is to have the answer show in a box next to this button.
    I have this, but it's not working...


     

  • Vulpes
    Try:

     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;
     }