vote up 7 vote down star

I'm refactoring some old javascript 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?

flag

4 Answers

vote up 11 vote down check

here's your example in "one" line.

this.$OuterDiv = $('<div></div>')
    .hide()
    .append($('<table></table>')
        .attr({ cellSpacing : 0 })
        .addClass("text")
    )
;
link|flag
3  
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
2  
That's true for jQuery < 1.3 It's speed equivalent now I beleive. – Rob Stevenson-Leggett Feb 2 at 10:49
vote up 4 vote down

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.

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|flag
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 at 14:22
vote up 0 vote down

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|flag
1  
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 at 16:18
1  
You learn something new everyday. Thanks for the heads up. – kouPhax Mar 10 at 12:01
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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