Creating a div element in jQuery

JavascriptJqueryHtmlAppendJquery Append

Javascript Problem Overview


How do I create a div element in jQuery?

Javascript Solutions


Solution 1 - Javascript

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

jQuery('<div>', {
    id: 'some-id',
    class: 'some-class some-other-class',
    title: 'now this div has a title!'
}).appendTo('#mySelector');

Here it is in the Docs

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

Solution 2 - Javascript

You can use append (to add at last position of parent) or prepend (to add at fist position of parent):

$('#parent').append('<div>hello</div>');    
// or
$('<div>hello</div>').appendTo('#parent');

Alternatively, you can use the .html() or .add() as mentioned in a different answer.

Solution 3 - Javascript

Technically $('<div></div>') will 'create' a div element (or more specifically a DIV DOM element) but won't 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.

Solution 4 - Javascript

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();
});

Solution 5 - Javascript

div = $("<div>").html("Loading......");
$("body").prepend(div);    

Solution 6 - Javascript

$("<div/>").appendTo("div#main");

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

Solution 7 - Javascript

A short way of creating div is

var customDiv = $("<div/>");

Now the custom div can be appended to any other div.

Solution 8 - Javascript

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 code:

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

//Way 2: prependTo()
<script type="text/javascript">
    $("<div>Hello, Stack Overflow users</div>").prependTo("#targetDIV"); //prependTo: Append at inside top
</script>

//Way 3: html()
<script type="text/javascript">
    $("#targetDIV").html("<div>Hello, Stack Overflow users</div>"); //.html(): Clean HTML inside and append
</script>

//Way 4: append()
<script type="text/javascript">
    $("#targetDIV").append("<div>Hello, Stack Overflow users</div>"); //Same as appendTo
</script>

Solution 9 - Javascript

$("<div/>").attr('id','new').appendTo('body');    

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

Solution 10 - Javascript

document.createElement('div');

Solution 11 - Javascript

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.

$('#clone_button').click(function() {
  $('#clone_wrapper div:first')
  .clone()
  .append('clone')
  .appendTo($('#clone_wrapper'));
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="clone_wrapper">
  <div>
    Div
  </div>
</div>

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

Solution 12 - Javascript

Create an in-memory DIV

$("<div/>");

Add click handlers, styles etc - and finally insert into DOM into a target element selector:

$("<div/>", {

  // PROPERTIES HERE
  
  text: "Click me",
  id: "example",
  "class": "myDiv",      // ('class' is still better in quotes)
  css: {           
    color: "red",
    fontSize: "3em",
    cursor: "pointer"
  },
  on: {
    mouseenter: function() {
      console.log("PLEASE... "+ $(this).text());
    },
    click: function() {
      console.log("Hy! My ID is: "+ this.id);
    }
  },
  append: "<i>!!</i>",
  appendTo: "body"      // Finally, append to any selector
  
}); // << no need to do anything here as we defined the properties internally.

<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

Similar to ian's answer, but I found no example that properly addresses the use of methods within the properties object declaration so there you go.

Solution 13 - Javascript

simply if you want to create any HTML tag you can try this for example

var selectBody = $('body');
var div = $('<div>');
var h1  = $('<h1>');
var p   = $('<p>');

if you want to add any element on the flay you can try this

selectBody.append(div);

Solution 14 - Javascript

<div id="foo"></div>

$('#foo').html('<div></div>');

Solution 15 - Javascript

If you are using Jquery > 1.4, you are best of with Ian's answer. Otherwise, I would use this method:

This is very similar to celoron's answer, but I don't know why they used document.createElement instead of Jquery notation.

$("body").append(function(){
		return $("<div/>").html("I'm a freshly created div. I also contain some Ps!")
			.attr("id","myDivId")
			.addClass("myDivClass")
			.css("border", "solid")					
			.append($("<p/>").html("I think, therefore I am."))
			.append($("<p/>").html("The die is cast."))
});

//Some style, for better demonstration if you want to try it out. Don't use this approach for actual design and layout!
$("body").append($("<style/>").html("p{background-color:blue;}div{background-color:yellow;}div>p{color:white;}"));

I also think using append() with a callback function is in this case more readable, because you now immediately that something is going to be appended to the body. But that is a matter of taste, as always when writing any code or text.

In general, use as less HTML as possible in JQuery code, since this is mostly spaghetti code. It is error prone and hard to maintain, because the HTML-String can easily contain typos. Also, it mixes a markup language (HTML) with a programming language (Javascript/Jquery), which is usually a bad Idea.

Solution 16 - Javascript

alternatively to append() you can also use appendTo() which has a different syntax:

$("#foo").append("<div>hello world</div>");
$("<div>hello world</div>").appendTo("#foo");    

Solution 17 - Javascript

You can create separate tags using the .jquery() method. And create child tags by using the .append() method. As jQuery supports chaining, you can also apply CSS in two ways. Either specify it in the class or just call .attr():

var lTag = jQuery("<li/>")
.appendTo(".div_class").html(data.productDisplayName);

var aHref = jQuery('<a/>',{			
}).appendTo(lTag).attr("href", data.mediumImageURL);

jQuery('<img/>',{												
}).appendTo(aHref).attr("src", data.mediumImageURL).attr("alt", data.altText);

Firstly I am appending a list tag to my div tag and inserting JSON data into it. Next, I am creating a child tag of list, provided some attribute. I have assigned the value to a variable, so that it would be easy for me to append it.

Solution 18 - Javascript

I think this is the best way to add a 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, for example, test");

Now append HTML to this added test div:

$("#test").append("Your HTML");

Solution 19 - Javascript

I hope that helps code. :) (I use)

function generateParameterForm(fieldName, promptText, valueType) {
    //<div class="form-group">
    //<label for="yyy" class="control-label">XXX</label>
    //<input type="text" class="form-control" id="yyy" name="yyy"/>
    //</div>

    // Add new div tag
    var form = $("<div/>").addClass("form-group");

    // Add label for prompt text
    var label = $("<label/>").attr("for", fieldName).addClass("control-label").text(promptText);

    // Add text field
    var input = $("<input/>").attr("type", "text").addClass("form-control").addClass(valueType).attr("id", fieldName).attr("name", fieldName);

    // lbl and inp => form
    $(form).append(label).append(input);

    return $(form);
}

Solution 20 - Javascript

If it is just an empty div, this is sufficient:

$("#foo").append("<div>")

or

$("#foo").append("<div/>")

It gives the same result.

Solution 21 - Javascript

$(HTMLelement) can success it. If you want an epmty div use it as $('<div></div>');. Also you can set the other elements by the same method. If you want to change inner HTML after created you can use html() method. For get outerHTML as string you can use is like this :

var element = $('<div/>');
var innerHTML = element.html(); // if you want set new HTML use it like this element.html('<b>new HTML</b>');
var outerHTML = element[0].outerHTML;

Solution 22 - Javascript

You can use .add() to create a new jQuery object and add to the targeted element. Use chaining then to proceed further.

For eg jQueryApi:

$( "div" ).css( "border", "2px solid red" )
  .add( "p" )
  .css( "background", "yellow" );

 div {
    width: 60px;
    height: 60px;
    margin: 10px;
    float: left;
  }

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>

Solution 23 - Javascript

How about this? Here, pElement refers to the element you want this div inside (to be a child of! :).

$("pElement").append("<div></div");

You can easily add anything more to that div in the string - Attributes, Content, you name it. Do note, for attribute values, you need to use the right quotation marks.

Solution 24 - Javascript

I've just made a small jQuery plugin for that.

It follows your syntax:

var myDiv = $.create("div");

DOM node ID can be specified as second parameter:

var secondItem = $.create("div","item2");

Is it serious? No. But this syntax is better than $("<div></div>"), and it's a very good value for that money.

(Answer partially copied from: https://stackoverflow.com/questions/268490/jquery-document-createelement-equivalent/18255277#18255277)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionuseranonView Question on Stackoverflow
Solution 1 - JavascriptianView Answer on Stackoverflow
Solution 2 - Javascriptcm2View Answer on Stackoverflow
Solution 3 - JavascriptsamjudsonView Answer on Stackoverflow
Solution 4 - JavascriptceloronView Answer on Stackoverflow
Solution 5 - JavascriptIshView Answer on Stackoverflow
Solution 6 - JavascriptCaiusView Answer on Stackoverflow
Solution 7 - JavascriptmaxspanView Answer on Stackoverflow
Solution 8 - JavascriptNazmulView Answer on Stackoverflow
Solution 9 - JavascriptAjayView Answer on Stackoverflow
Solution 10 - JavascripteomeroffView Answer on Stackoverflow
Solution 11 - JavascriptSteven MoseleyView Answer on Stackoverflow
Solution 12 - JavascriptRoko C. BuljanView Answer on Stackoverflow
Solution 13 - JavascriptMEAbidView Answer on Stackoverflow
Solution 14 - JavascriptegagaView Answer on Stackoverflow
Solution 15 - Javascriptnst1nctzView Answer on Stackoverflow
Solution 16 - Javascriptdavidman77View Answer on Stackoverflow
Solution 17 - JavascriptShruthi AcharyaView Answer on Stackoverflow
Solution 18 - JavascriptAtulView Answer on Stackoverflow
Solution 19 - JavascriptÇağdaş KarademirView Answer on Stackoverflow
Solution 20 - JavascriptVennsohView Answer on Stackoverflow
Solution 21 - JavascriptKamuran SönecekView Answer on Stackoverflow
Solution 22 - JavascriptTusharView Answer on Stackoverflow
Solution 23 - JavascriptAravind SureshView Answer on Stackoverflow
Solution 24 - Javascriptern0View Answer on Stackoverflow