vote up 5 vote down star
2

Hi guys,

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

flag

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

5 Answers

vote up 10 vote down check

I use $(document.createElement('div')); Seems fastest to me 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.

link|flag
If you don't need to do further operations on the element, this would be ok. You still need to append it to the DOM. The jquery method automatically does this for you. – tvanfosson Nov 29 '08 at 2:49
1  
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
Didn't see the $() in your response. Normally if you do document.createElement() you also have to do document.body.appendChild() on the created element to display it. Jquery must detect that your created div is not part of the DOM and add it for you just as if you let jquery create it. – tvanfosson Nov 29 '08 at 3:32
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
vote up 0 vote down

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

 $("<div/>");
link|flag
vote up 6 vote down

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
link|flag
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
@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
vote up 0 vote down

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

link|flag
vote up 1 vote down

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!

link|flag
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

Your Answer

Get an OpenID
or

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