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

[ad_1]

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

[ad_2]

solved jquery to move td below another td [closed]