Guest User

Untitled

a guest
Apr 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. function calculate();
  2. {
  3.  
  4. var mugPrice = 5;
  5. var keyringPrice = 2;
  6. var tshirtPrice = 15;
  7.  
  8. var numMug = document.getElementById('numberOfMugs').value
  9. var numTshirt = document.getElementById('numberOfTshirts').value
  10. var numKeyring = document.getElementById('numberOfKeyrings').value
  11.  
  12. var totalpay = (numMug * mugPrice) + (numTshirt * tshirtPrice) + (numKeyring * keyringPrice);
  13.  
  14. document.getElementById('totalPrice').value= totalpay;
  15. }
  16.  
  17. <button class="calcButton" onclick="calculate()">Calculate Order</button
  18. <h3>Total price: <input type=text; id="totalPrice" disabled /> </h3>
Add Comment
Please, Sign In to add comment