> <dl> > <dd>...something...</dd> <!-- MOVE TO HERE --> > </dl> > <dl> > <dd>...something... <span id="to_move">TO MOVE</span></dd> > </dl>
How about this? $("#to_move").parents("dl:first").prev().find("dd").append($ ("#to_move"));
> <dl> > <dd>...something...</dd> <!-- MOVE TO HERE --> > </dl> > <dl> > <dd>...something... <span id="to_move">TO MOVE</span></dd> > </dl>
How about this? $("#to_move").parents("dl:first").prev().find("dd").append($ ("#to_move"));