vote up 1 vote down star

Hi Guys,

Here's the story. I've got an unordered list inside a div on my page.

The code:

<div id="move-me">
   <ul>
      <li><a href="#">Link</a></li>
      <li><a href="#">Link</a></li>
   </ul>
</div>

The above code is positioned on the left of the page, now what I want to do is, destroy the div and ul elements and be only left with the links. Then finally append these links to a sidebar list.

Any ideas?

flag

2 Answers

vote up 5 vote down check

Easy!

$("#move-me").remove().find('a').appendTo("#somewhere-else");

An example.

link|flag
merci altCognito! – Keith Donegan Jun 2 at 14:51
vote up 1 vote down

You want to remove the links from the LI tags then add to the sidebar then remove the unordered list. Something like this should work:

$('#move-me > a').appendTo('#sidebar'); $('#move-me').remove();

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.