Advertisement
Guest User

asdf

a guest
May 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.52 KB | None | 0 0
  1. <head>
  2.     <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
  3.     <style>
  4.         div {
  5.             border: 1px solid #CCC;
  6.             border-radius: 3px;
  7.             padding: 12px;
  8.         }
  9.     </style>
  10. </head>
  11.  
  12. <body>
  13.  
  14.     <input id="todo" type="text">
  15.     <button id="speichern">Speichern</button>
  16.        
  17.     <script>
  18.        
  19.         var button = $("#speichern")
  20.         button.click(todoErstellen)
  21.        
  22.         function todoErstellen(e) {
  23.             var text = $("#todo").val()
  24.            
  25.             var todo = $("<div>" + text + "</div>")
  26.             todo.appendTo('body')
  27.         }
  28.        
  29.     </script>
  30. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement