Advertisement
Guest User

todlist-html

a guest
May 21st, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.41 KB | None | 0 0
  1. <head>
  2.     <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
  3.     <style>
  4.         body { width: 600px; margin: 0 auto; }
  5.     </style>
  6. </head>
  7.  
  8. <body>
  9.     <input id="aufgabe" type="text">
  10.     <input id="speichern" type="submit">
  11.    
  12.        
  13.     <script>
  14.         $('#speichern').click(speichern)
  15.        
  16.         function speichern() {
  17.             var todo = $('#aufgabe').val()
  18.            
  19.            
  20.            
  21.             $('#aufgabe').val('')
  22.         }
  23.     </script>
  24. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement