Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I create a div element in jQuery?

share|improve this question
10  
@Asad Because beginners love it – Fee Dec 1 '12 at 16:58
11  
And because even people who have 25 years of experience don't always know everything in every environment! – nroose Dec 4 '12 at 21:48
14  
The question seems clear to me, and is very highly voted. I've nominated for reopening, even if it's already been answered. Perhaps the right answer will change in the future, etc., etc. – Devin Jeanpierre Jan 15 at 5:51
6  
Agreed. How this is "not a real question" is beyond me. – baudtack Apr 2 at 4:39
4  
I think should be community wiki not closed as not a real question. – BlackICE Apr 2 at 15:31
show 1 more comment

closed as not a real question by bmargulies, 0x499602D2, NullPoiиteя, stigok, Graviton Dec 6 '12 at 2:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

13 Answers

up vote 266 down vote accepted

First select the parent element with something like

$("#id"), $("<element>") or $(".class")

then use the .append("<div>foo</div>") function. Alternatively, you can use the .html() as mentioned above.

$("#foo").append("<div>hello world</div>")
share|improve this answer
After creating a div using $("#foo").append("<div id="bar">hello world</div>") I can't seem to access it from $("#bar") – Xeoncross Mar 3 '11 at 17:52
10  
wouldnt the id need single quotes rather than double? So id="bar" would be id='bar' otherwise you are closing it. – Ricki Sep 24 '11 at 17:53
5  
@Ricki - no, use double-quotes for all attributes. Single quotes do not produce valid XHTML, although most browsers will tolerate it. – halfer Oct 22 '11 at 12:21
4  
@halfer vice versa then, use single quotes in javascript for selectors and any appended html with double quotes. – Ricki Oct 22 '11 at 18:04
5  
Ah yes, I see what you mean - good point! A small edit for @Xeoncross? :) – halfer Oct 22 '11 at 18:06
show 1 more comment

As of jQuery 1.4 you can pass attributes to a self-closed element like so:

jQuery('<div/>', {
    id: 'foo',
    href: 'http://google.com',
    title: 'Become a Googler',
    rel: 'external',
    text: 'Go to Google!'
}).appendTo('#mySelector');

Here it is in the Docs

Examples can be found at jQuery 1.4 Released: The 15 New Features you Must Know .

share|improve this answer
4  
You can read about it in the docs at api.jquery.com/jQuery/#jQuery2 (last paragraph of section) – Gaby aka G. Petrioli Dec 2 '10 at 10:20
2  
This is a great solution and ideal because you're able to give it some properties before making an invasive DOM modification. – knowncitizen Feb 16 '11 at 21:53
3  
@knowncitizen but that's also the same as writing it all inline. e.g. $('<div id="foo" class="bar">text</div>').appendTo('body'); etc. – trusktr May 17 '11 at 3:59
2  
What if I also want to create subelement with variable. e.g. to create a child <a> tag and a parent div at the same time, and the <a> tag's text=var content. – Ivan Wang Jun 17 '12 at 21:31
2  
If you want to generate a class name on the fly with your dynamically generated div, you may need to put single quotes around class, in order for things to work in IE7, and IE8 - for example 'class':'my-class-name' – blachawk Feb 28 at 23:12
show 8 more comments

Technically $('<div></div>') will 'create' a div element (or more specifically a DIV DOM element) but wont add it to your HTML document. You will then need to use that in combination with the other answers to actually do anything useful with it (such as using the append() method or such like).

The manipulation documentation gives you all the various options on how to add new elements: http://docs.jquery.com/Manipulation

share|improve this answer
1  
how do you give your new div a new id? and say the id has to be dynamic? i.e '<div id=' + myNewId +'></div>' – towpse Jun 7 '10 at 15:53
2  
use the .attr() method. – samjudson Jun 17 '10 at 21:10
d=document.createElement('div');
$(d).addClass(classname)
    .html(text)
    .appendTo($("#myDiv")) //main div
    .click(function(){
        $(this).remove();
    })
    .hide()
    .slideToggle(300)
    .delay(2500)
    .slideToggle(300)
    .queue(function() {
        $(this).remove();
    });
share|improve this answer
5  
This is the best answer so far. By far! – JRM Aug 3 '12 at 16:05

All these worked for me,

HTML part:

<div id="targetDIV" style="border: 1px solid Red">
    This text is surrounded by a DIV tag whose id is "targetDIV"
</div>

Javascript:

<script type="text/javascript">
    //way 1: appendTo()
    $("<div>hello stackoverflow users</div>").appendTo("#targetDIV");//appendTo append at inside bottom
</script>

<script type="text/javascript">
//way 2: prependTo()
    $("<div>hello stackoverflow users</div>").prependTo("#targetDIV");//prependTo append at inside top
</script>

<script type="text/javascript">
//way 3: html()
    $("#targetDIV").html("<div>hello stackoverflow users</div>");//.html() clean html inside and append
</script>

<script type="text/javascript">
//way 4: append()
    $("#targetDIV").append("<div>hello stackoverflow users</div>");//same as appendTo
</script>
share|improve this answer
Nice answer, Hoque. – Tom Hubbard May 27 '11 at 15:39
$("<div></div>").appendTo("div#main");

will append a blank div to <div id="main"></div>

share|improve this answer

Hope this helps

div = $("<div>").html("Loading......");
$("body").prepend(div);
share|improve this answer
$("<div></div>").attr('id','new').appendTo('body');    

This will create new div with id "new" into body.

share|improve this answer

document.createElement('div');

share|improve this answer
8  
the question was "How do I create a div element in jQuery?" – schellmax Sep 17 '11 at 17:32
3  
literally: $(document.createElement('div')); – timoxley Jul 10 '12 at 15:54
<p id="foo"></p>

$('#foo').html('<div></div>');
share|improve this answer

Here's another technique for creating divs with jQuery.

ELEMENT CLONING

Say you have an existing div in your page that you want to clone using jQuery (e.g. to duplicate an input a number of times in a form). You would do so as follows.

Demo Here: http://jsfiddle.net/yYdng/

<div id="clone_wrapper">
    <div>
        Contents
    </div>
</div>

<button id="clone_button">Clone me!</button>

<script type="text/javascript">
    $('#clone_button').click(function() {
         $('#clone_wrapper div:first')
            .clone()
            .append('clone')
            .appendTo($('#clone_wrapper'));
    });
</script>
share|improve this answer

I think this is the best way to add div:

To append a test div to the div element with ID div_id:

$("#div_id").append("div name along with id will come here..eg. test");

Now append html to this added test div

$("#test").append("your html");
share|improve this answer

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