Changing The Tabular Data To Another Table Using Jquery
I tried to implement to display data in a table with the button click. Now I am trying to move the data from the table to the below the continue table. In this code, when I enter t
Solution 1:
One way to approach this would be to remove the row from the first table and append it to the second.
This line finds the second row in the first table, removes it if it exists and appends it to the second table.
$('#datatable').find('tr').eq(1).remove().appendTo($('#seconddatatable'));
Updated fiddle - this works for me first entering 122233334444
, then entering 122223355552
Post a Comment for "Changing The Tabular Data To Another Table Using Jquery"