[Solved] jquery to move td below another td [closed]


Something like this should do it

$('tr').each(function(){
    var self = $(this);
    self.after('<tr>').next().append( self.find('td:last') );
});

Demo at http://jsfiddle.net/rucsh/

2

solved jquery to move td below another td [closed]