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

Recently I've been doing a lot of modal window pop ups and what not, for which I used jQuery. The method that I used to create the new elements on the page has overwhelmingly been along the lines of:

$("<div></div>");

However, I'm getting the niggling feeling that this isn't the best or the most efficient method of doing this. What is the best way to create elements in jQuery from a performance perspective?

Cheers

http://stackoverflow.com/a/268520/32943 has the benchmarks for the answers below

share|improve this question
1  
Experiment with removing styles too and see if that speeds things up. I find CSS application and updates slow things down the most on big pages for me. – CVertex Nov 29 '08 at 5:00
1  
Beware of premature optimization -- if you're not doing this for hundreds of DOM elements at a time, or using VERY old browsers, then you're probably not going to notice any difference in the browser's performance. – Blazemonger Jul 31 '12 at 21:43
@Blazemonger It wasn't so much that I needed a more efficient method of creating DOM elements, but the situation that I was in made me ponder what the alternatives are and how efficient they might be. – Darko Z Aug 1 '12 at 4:27
jsperf stats – jantimon Feb 15 at 17:19
jQuery is a library – you will almost always incur overhead performance costs for this reason: it's like talking to someone through an interpreter. Unless you want to use raw JavaScript, take advantage of how quick it is to write $('<div>') and accept the performance hit. – fettereddingoskidney Apr 15 at 2:44
show 1 more comment

9 Answers

up vote 115 down vote accepted

I use $(document.createElement('div')); Benchmarking shows this technique is the fastest. I speculate this is because jQuery doesn't have to identify it as an element and create the element itself.

You should really run benchmarks with different Javascript engines and weigh your audience with the results. Make a decision from there.

share|improve this answer
10  
jQuery "appends" it to DOM? Where? This doesn't make much sense to me -- where would the div go? – strager Nov 29 '08 at 3:12
14  
a created div in jquery has to be added just like in javascript. $('<div>') by itself isn't attached to the DOM until you append() it to something. – Owen Nov 29 '08 at 4:44
omg, great advice! Thanks alot! – Ionut Staicu Nov 29 '08 at 17:30
2  
@tvanfosson: Sorry buddy, you are wrong again. If you want that $(document.createElement('div')) part added to the DOM you will have to append or prepend it to another element (already in the DOM). As it is, the element jquery creates is NOT attached to anything (at least in modern browsers that support documentFragment, AFAIK). – David Murdoch Sep 8 '10 at 13:16
4  
@David - obviously you're right. I will note that I added the comment about 2 years ago just when I was starting to learn jQuery. You would need to do an appendTo, ... Because the comments were obviously wrong, I've removed them. – tvanfosson Sep 8 '10 at 13:23
show 2 more comments

personally i'd suggest (for readability):

$('<div>');

some numbers on the suggestions so far (safari 3.2.1 / mac os x):

var it = 50000;

var start = new Date().getTime();
for (i = 0; i < it; ++i)  {
  // test creation of an element 
  // see below statements
}
var end = new Date().getTime();
alert( end - start );                

var e = $( document.createElement('div') );  // ~300ms
var e = $('<div>');                          // ~3100ms
var e = $('<div></div>');                    // ~3200ms
var e = $('<div/>');                         // ~3500ms
share|improve this answer
4  
From the jquery docs: 'When creating single elements use the closing tag or XHTML format. For example, to create a span use $("<span/>") or $("<span></span>") instead of without the closing slash/tag.' – tvanfosson Nov 29 '08 at 2:46
i assumed that was outdated, as the method i describe creates just as valid XHTML. ex: var e = $('<div>').append($('<div>')).html(); alert(e); is there some other metric that would render this method unfavourable to use? – Owen Nov 29 '08 at 2:55
4  
@Owen, that behavior is a bug, not a feature. Garbage in, garbage out -- it just so happens that the garbage you get is acceptable. Don't rely on it between jQuery versions, though, unless the specification for the function changes. – strager Nov 29 '08 at 5:15
2  
As expected, seeing similar numbers in Mac OS X Chrome (100ms for createElement() vs. 500ms text parsing) and Mac OS X Firefox (350ms vs. 1000ms). Thanks for writing up the test loop. – Adam Backstrom Feb 5 '10 at 14:15
20  
jsPerf test case: jsperf.com/jquery-element-creationyay/3 – Mathias Bynens Mar 27 '11 at 11:58

Actually, if you're doing $('<div>'), jQuery will also use document.createElement().

(Just take a look at http://code.jquery.com/jquery-1.4.2.js, line 117).

There is some function-call overhead, but unless performance is critical (you're creating hundreds [thousands] of elements), there isn't much reason to revert to plain DOM.

Just creating elements for a new webpage is probably a case in which you'll best stick to the jQuery way of doing things.

share|improve this answer

If you have a lot of HTML content (more than just a single div), you might consider building the HTML into the page within a hidden container, then updating it and making it visible when needed. This way, a large portion of your markup can be pre-parsed by the browser and avoid getting bogged down by JavaScript when called. Hope this helps!

share|improve this answer
Thanks for the advice. I have used this approach before, however in this particular case I am specifically wanting to know about creating elements. – Darko Z Nov 29 '08 at 3:27

I think you're using the best method, though you could optimize it to:

 $("<div/>");
share|improve this answer

This is not the correct answer for the question but still I would like to share this...

Using just document.createElement('div') and skipping JQuery will improve the performance alot when you want to make lot of elements on the fly and append to DOM.

share|improve this answer

Someone has already made a benchmark: jQuery document.createElement equivalent?

$(document.createElement('div')) is the big winner.

share|improve this answer

One point is that it may be easier to do:

$("<div class=foo id=bar style='color:white;bgcolor:blue;font-size:12pt'></div>")

Then to do all of that with jquery calls.

share|improve this answer
   
4 spaces in front of a line makes it format like code. Select a block and hit Ctr-k go achieve this. – Peter Ajtai Sep 23 '10 at 21:22

You don't need raw performance from an operation you will perform extremely infrequently from the point of view of the CPU.

share|improve this answer
Depends on how frequently you are doing it. – Rich Bradshaw Mar 1 '10 at 21:31
4  
The OP is creating a modal popup. This operation is not repeated thousands of times per second. Instead, it is repeated maybe once every few seconds, at maximum. Using the jQuery(html :: String) method is perfectly fine. Unless the situation is extremely unusual, one will be unlikely to achieve better perceived performance. Spend the optimization energy on the cases that could use it. Additionally, jQuery is optimized for speed in many ways. Do sane things with it, and trust-but-verify it to be fast. – yfeldblum Mar 2 '10 at 2:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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