Guest User

Untitled

a guest
Jan 22nd, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <table id="testing" style="padding-top: 10px">
  2. <thead>
  3. <tr>
  4. <th>Student Name</th>
  5. </tr>
  6. </thead>
  7. <tbody>
  8. <tr>
  9. <td><a href="javascript:void(0);" class="addCF">Add</a></td>
  10. <td>
  11. <tiles:insert definition=".textInput">
  12. <tiles:put name="property" value="parameter[01]"/>
  13. <tiles:put name="width" value="75"/>
  14. </tiles:insert>
  15. </td>
  16. <tr>
  17. </tbody>
  18. </table>
  19.  
  20.  
  21. <script type="text/javascript">
  22. $(document).ready(function(){
  23. $(".addCF").click(function(){
  24. $("#testing").append('<tr><td>
  25. <tiles:insert definition=".textInput">
  26. <tiles:put name="property" value="parameter[02]"/>
  27. <tiles:put name="width" value="75"/>
  28. </tiles:insert></td> </tr>');
  29. });
  30. });
  31.  
  32.  
  33. </script>
Add Comment
Please, Sign In to add comment