Neal
Neal

Reputation: 463

How to add divs inside a div using jquery

I am trying to insert a div inside another div using add() of jquery but it is not working

<div class="column" id="col1">
    <div class="portlet" id="panel1">
        <div class="portlet-header">1.Feeds</div>
        <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
    </div>
    <div class="portlet" id="panel2">
        <div class="portlet-header">2.News</div>

        <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
    </div>
</div>

<div class="column" id="col2">
    <div class="portlet" id="panel3">
        <div class="portlet-header">3.Shopping</div>
        <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
    </div>
</div>

Actually panel1 and panel2 are inside a div, and panel3 is inside another div.I want to remove panel3 from its div and place it between panel1 and panel2 in their div.

Upvotes: 3

Views: 13793

Answers (3)

Nick Craver
Nick Craver

Reputation: 630409

You can do it like this using .insertAfter():

$("#panel3").insertAfter("#panel1");​​​​​​​​​​​​​​

This does as your question states, takes panel3 and places it between panel1 and panel2.

Upvotes: 5

ACP
ACP

Reputation: 35268

Use appendTo which will add divs to an existing div... But if you want to insert in between two divs use after() and before()

Give the main div an Id say MainDiv and use urdiv.appendTo("MainDiv");

$("#panel2").before("#panel3");

Upvotes: 0

rahul
rahul

Reputation: 187040

You can use after()

$("#panel1").after($("#panel3"));

Upvotes: 0

Related Questions