Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. window.onload = startup;
  2. var coffee;
  3. var output;
  4. function startup() {
  5.  
  6. var submit = document.getElementById("formSubmit");
  7. submit.addEventListener("click", checkNumber);
  8.  
  9. }
  10.  
  11. function checkNumber() {
  12. coffee = parseInt(document.getElementById("formAmount").value);
  13. output = document.getElementById("formResult");
  14. if(coffee <= 3){
  15. output.innerHTML = "You definitely need more coffee! How are you awake?";
  16. }
  17. else{
  18. output.innerHTML = "You need more coffee! You need at least " +(coffee + 1)+ " cups in total";
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement