Guest User

Untitled

a guest
Feb 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. function onSubmission(form)
  2. {
  3.  
  4. var cookieString = "";
  5.  
  6.  
  7. if(cookieString == "")
  8. {
  9. cookieString = "caseDesc=FullTower ATX Case" + ",caseQty=" + form.quantity1.value + ",casePrice=169.99";
  10. }
  11. else
  12. {
  13. cookieString += ",caseDesc=FullTower ATX Case" + ",caseQty=" + form.quantity1.value + ",casePrice=169.99";
  14. }
  15.  
  16.  
  17.  
  18. if(cookieString == "")
  19. {
  20. cookieString = "motherBoardDesc=MotherBoard" + ",motherBoardQty=" + form.quantity2.value + ",motherBoardPrice=69.99";
  21. }
  22. else
  23. {
  24. cookieString += ",motherBoardDesc=MotherBoard" + ",motherBoardQty=" + form.quantity2.value + ",motherBoardPrice=69.99";
  25. }
  26.  
  27.  
  28.  
  29.  
  30. if(cookieString == "")
  31. {
  32. cookieString = "videoCardDesc=Video Card" + ",videoCardQty=" + form.quantity3.value + ",casePrice=199.99";
  33. }
  34. else
  35. {
  36. cookieString += ",videoCardDesc=Video Card" + ",videoCardQty=" + form.quantity3.value + ",casePrice=199.99";
  37. }
  38.  
  39. document.cookie = cookieString;
  40. alert(document.cookie);
  41. form.action = "customerInformationForm.html";
  42. form.submit();
  43. }
  44.  
  45.  
  46.  
  47.  
  48.  
  49. </SCRIPT>
Add Comment
Please, Sign In to add comment