Guest User

Untitled

a guest
Jan 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $('#mydiv').clone(true).attr("id", "mytable"+ i).insertAfter('#mydiv');
  2.  
  3. $(document).on('click', '.add_line', function(e) {
  4. e.preventDefault();
  5. var wrapper = $(this).parents('.wrapper');
  6.  
  7. var toClone = wrapper.find('table tr:last');
  8. toClone.after(toClone.clone(true).attr("id", "champs" + i));
  9. });
Add Comment
Please, Sign In to add comment