Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Grok Eats</title>
  5. </head>
  6. <body>
  7. <h1>Grok Eats</h1>
  8.  
  9. <p>
  10. <label id="amountLabel">
  11.  
  12. <!-- Put the number input here -->
  13. <input id="amountInput" type="number">
  14.  
  15. × Pad Thai
  16. </label>
  17.  
  18. <label id="proteinLabel">
  19. with
  20.  
  21. <!-- Put the select here -->
  22. <select id="proteinSelect">
  23. <option value="Chicken">Chicken</option>
  24. <option value="Beef">Beef</option>
  25. <option value="Tofu">Tofu</option>
  26. <option value="Vegetable">Vegetable</option>
  27.  
  28. </select>
  29.  
  30. </label>
  31. </p>
  32.  
  33. <p>
  34. <span id="amount">0</span> Pad Thai with <span id="protein">Chicken</span>
  35. </p>
  36.  
  37. <script>
  38.  
  39. // Your JavaScript here
  40. function amount2() {
  41. amount.textContent = amountInput.value
  42. }
  43. amountInput.oninput = amount2;
  44.  
  45. function protein2() {
  46. protein.textContent = proteinSelect.value
  47. }
  48. proteinSelect.oninput = protein2;
  49.  
  50. </script>
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement