-1

enter image description here

While click Add button i need to add the rows dynamically

Prince Antony G
  • 932
  • 4
  • 18
  • 39

3 Answers3

0
$('table tr:last').after('<tr>...</tr><tr>...</tr>');
arun
  • 3,667
  • 3
  • 29
  • 54
0

try this

 $('table').append('<tr>...</tr>');
rajesh kakawat
  • 10,826
  • 1
  • 21
  • 40
0

Look this - Dynamically adding / removing rows in ASP.NET Repeater (or other control) - using custom collections

Alex Veremeenko
  • 338
  • 2
  • 4