Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <script src="toUndo.js" type="text/javascript"></script>
  4. <script src="undo.js" type="text/javascript"></script>
  5.  
  6. <body>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <tr class="results" id="first">
  11. <td>First Place</td>
  12. <td><input type="number" id="name"/></td>
  13.  
  14. </tr>
  15. <button id="undo">undo</button>
  16. <script type="text/javascript">undoName();</script>
  17. </body>
  18. </html>
  19.  
  20. function clearIt {
  21. document.getElementById("name").value = 0;
  22. }
  23.  
  24. function undoName {
  25. undoButton = document.getElementById("undo");
  26. undoButton.onclick = clearIt;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement