Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. order_confirm = confirm(""+Name+" you ordered "+Quantity+" of "+ProductName+". Is this correct?");
  2.  
  3. if(!order_confirm)
  4. alert("Refresh the page to reload and place a new order");
  5.  
  6. else
  7. {
  8.  
  9. if(ProductName == "contract negotiation")
  10. Price=200 Discount=.05;
  11.  
  12. else if(ProductName == "legal counseling")
  13. Price=350 Discount=.07;
  14.  
  15. else if(ProductName == "contract extensions")
  16. Price=125 Discount=.02;
  17.  
  18. else if(ProductName == "career marketing")
  19. Price=400 Discount=.1;
  20.  
  21. else
  22. alert("Sorry, "+Name+". You entered an invalid product. Refresh the page to reload and place the order again.");
  23.  
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement