I'm refactoring some old JavaScript code and there's a lot of DOM manipulation going on.

var d = document;
var odv = d.createElement("div");
odv.style.display = "none";
this.OuterDiv = odv;

var t = d.createElement("table");
t.cellSpacing = 0;
t.className = "text";
odv.appendChild(t);

Is there a better way to do this using jQuery? I've been experimenting with:

 var odv = $.create("div");
 $.append(odv);

etc. But I'm not sure this is any better.

Google Search gives me ambiguous answers on the subject. Clues?

link|improve this question

feedback

8 Answers

up vote 308 down vote accepted

here's your example in "one" line.

this.$OuterDiv = $('<div></div>')
    .hide()
    .append($('<table></table>')
        .attr({ cellSpacing : 0 })
        .addClass("text")
    )
;

Update: I thought I'd update this post since it still gets quite a bit of traffic. In the comments below there's some discussion about $("<div>") vs $("<div></div>") vs $(document.createElement('div')) as a way of creating new elements, and which is "best".

I put together a small benchmark, and here's roughly the results of repeating the above options 100,000 times:

jQuery 1.4, 1.5, 1.6

               Chrome 11  Firefox 4   IE9
<div>            440ms      640ms    460ms
<div></div>      420ms      650ms    480ms
createElement    100ms      180ms    300ms

jQuery 1.3

                Chrome 11
<div>             770ms
<div></div>      3800ms
createElement     100ms

jQuery 1.2

                Chrome 11
<div>            3500ms
<div></div>      3500ms
createElement     100ms

I think it's no big surprise, but document.createElement is the fastest method. Of course, before you go off and start refactoring your entire codebase, remember that the differences we're talking about here (in all but the archaic versions of jQuery) equate to about an extra 3 milliseconds per thousand elements.

Update 2

Updated for jQuery 1.7.2 and put the benchmark on JSPerf which is probably a bit more scientific than my primitive benchmarks, plus it can be crowdsourced now!

http://jsperf.com/jquery-vs-createelement

link|improve this answer
26  
You'll find that document.createElement is much faster than having jQuery convert your html string into an element. (just in case you have an urge to make things more efficient) – Sugendran Nov 7 '08 at 7:19
17  
That's true for jQuery < 1.3 It's speed equivalent now I beleive. – Rob Stevenson-Leggett Feb 2 '09 at 10:49
10  
@Kevin, that is true, however it makes jQuery do more work (it runs it through a regex to add the closing tag), so I prefer the method above. Also, it differentiates your code from $('div') which is visually very similar, but functionally poles apart. – nickf Feb 24 '10 at 6:29
9  
So basically a combination of @Sungendran & @nickf would be $(document.createElement('div')) and it should be the fastest? – Kolky Mar 12 '10 at 17:59
6  
I think the "correct" way is $('<div />'), with, IMO, has even more "meaning", since it's pretty obvious you are creating a Node. The bad thing is this way breaks the syntax highlighting in all editors =( – Erik Escobedo Jul 7 '10 at 15:51
show 15 more comments
feedback

Simply supplying the HTML of elements you want to add to a jQuery constructor $() will return a jQuery object from newly built HTML, suitable for being appended into the DOM using jQuery's append() method.

For example:

var t = $("<table cellspacing='0' class='text'></table>");
$.append(t);

You could then populate this table programmatically, if you wished.

This gives you the ability to specify any arbitrary HTML you like, including class names or other attributes, which you might find more concise than using createElement and then setting attributes like cellSpacing and className via JS.

link|improve this answer
3  
Maybe this was obvious, and indicated by your example, but creating a jQuery DOM element using the $("<html string>") syntax, cannot be appended into the DOM using the native <element>.appendChild method or similar. You must use the jQuery append method. – Adam May 8 '09 at 14:22
2  
$(htmlStr) is implemented as document.createElement("div").innerHTML = htmlStr. In other words, it invokes the browser's HTML parser. Malformed HTML breaks differently in IE vs other browsers. – Matthew Jan 14 '11 at 0:28
@Adam jQuery object have the get function which returns the native DOM element. (I know this topic is old, but I add it for reference. ;-) ) – Randy Marsh May 17 at 20:36
feedback

Creating new DOM elements is a core feature of the jQuery() method, see:

Cheers.

link|improve this answer
feedback
var mydiv = $('<div />') // also works
link|improve this answer
feedback

If you're creating a huge table, innerHTML and array.push is faster than the DOM methods. Especially in IE.

link|improve this answer
feedback
var div = $('<div/>');
div.append('Hello World!');

Is the shortest/easiest way to create a DIV element in jQuery.

link|improve this answer
feedback

jQuery out of the box doesn't have the equivalent of a createElement. In fact the majority of jQuery's work is done internally using innerHTML over pure DOM manipulation. As Adam mentioned above this is how you can achieve similar results.

There are also plugins available that make use of the DOM over innerHTML like appendDOM, DOMEC and FlyDOM just to name a few. Performance wise the native jquery is still the most performant (mainly becasue it uses innerHTML)

link|improve this answer
2  
You should get up to date. jQuery does not use innerHtml but parses the HTML string and internally builds a DOM tree using document.createElement(). This is core jQuery. – Vincent Robert Mar 9 '09 at 16:18
3  
You learn something new everyday. Thanks for the heads up. – James Hughes Mar 10 '09 at 12:01
feedback

It's all pretty straight forward! Heres a couple quick examples...


var $example = $( XMLDocRoot );

var $element = $( $example[0].createElement('tag') );
// Note the [0], which is the root

$element.attr({
id: '1',
hello: 'world'
});

var $example.find('parent > child').append( $element );
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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