Guest User

Untitled

a guest
Dec 7th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. function addRow()
  2. {
  3. tabBody=document.getElementById("inputtable");
  4. row=document.createElement("TR");
  5. cell1 = document.createElement("TD");
  6. textnode1=document.createElement("input");
  7. textnode1.name="inputbox[]";
  8. textnode1.type="text";
  9.  
  10. cell1.appendChild(textnode1);
  11. row.appendChild(cell1);
  12. tabBody.appendChild(row);
  13. }
  14.  
  15. <form name="" action="" method="post">
  16. <table border="0" width="100%">
  17. <tbody id="inputtable">
  18. <tr><td><input type="text" name="inputbox[]" /></td></tr>
  19. </tbody>
  20. </table>
  21.  
  22. <table border="0" width="100%">
  23. <tr>
  24. <td><input type="button" value="Add a Question" onclick="addRow();" /></td>
  25. </tr>
  26.  
  27. </table>
  28. </form>
Add Comment
Please, Sign In to add comment