[Solved] how to insert in html using jquery [closed]


Can restructure table by putting last 2 cells in new row:

$('tr').each(function(){
    $(this).after( $('<tr>').append( $(this).find('td:gt(1)')))
});

DEMO: http://jsfiddle.net/Fyvwd/

5

solved how to insert in html using jquery [closed]