I create HTML snippet on-the-fly:

$('<span/>').addClass(spanClass)

Is there a jQuery way to wrap this code into <div>?

Semantically I want to do:

$('<span/>').addClass(spanClass).wrap($('<div/>').addClass(divClass))

that does not work. So I just want following jQuery-idiomatic version:

function wrap(what, with) { return $(with).append(what); }
link|improve this question

76% accept rate
feedback

4 Answers

up vote 4 down vote accepted

Keep in mind that your jQuery object is still referencing the new <span>, so if you're trying to insert it with a chained method, the <div> won't be inserted.

To overcome this, you'd need to traverse up to the new parent <div> first.

    // Traverse up to the new parent in order to append the <div> and <span>
$('<span/>').addClass(spanClass).wrap($('<div/>').addClass(divClass))
            .parent().appendTo('body');

You could also write it like this:

$('<span/>').addClass(spanClass).wrap('<div/>')
            .parent().addClass(divClass).appendTo('body');
link|improve this answer
Very nice catch. – Stefan Kendall Jan 12 '11 at 16:59
first, it does not work, wrap() wraps nodes in DOM, $('<span/>') is not in DOM until I put it there. Second, if I'd use function I presented I would do $('body').append(wrap(...)) – THX-1138 Jan 12 '11 at 17:08
@user93422: First, yes it does work. Here's an example. Second you'll get the same result using that method of $('body').append( if you don't bother to traverse up to the new <div>. – user113716 Jan 12 '11 at 17:12
...here's an example using $('body').append(... without traversing. And here's an example that works because it does traverse up to the new parent <div>. – user113716 Jan 12 '11 at 17:16
1  
aha, .wrap() returns the wrapped object indeed. my bad, it does work. – THX-1138 Jan 12 '11 at 17:38
show 1 more comment
feedback
$('<div/>', {'class': divClass}).append($('<span/>', {'class': spanClass}));
link|improve this answer
1  
+1 for the use of the "props" object, but you should put class in quotes, or call it className to avoid reserved word issues. – user113716 Jan 12 '11 at 17:04
+1 learn something new every day, thanks Tomalak. – Jason Benson Jan 12 '11 at 17:05
how is it different from function wrap(what, with) { return $(with).append(what); }? – THX-1138 Jan 12 '11 at 17:09
@patrick: Good point, I didn't notice. Thanks! – Tomalak Jan 12 '11 at 17:58
@user: Well, in that it does not use a separate function. Being "jQuery idomatic" also means to not break the function chaining that makes jQuery so convenient. Whether you call foo.wrap(bar) or bar.append(foo) is less important IMHO – Tomalak Jan 12 '11 at 18:28
feedback

Why not:

$('<div/>').addClass(divClass).append($('<span/>').addClass(spanClass));

IE create your div first?

link|improve this answer
because I suspect there got to be a built-in in jQuery way to accomplish this. – THX-1138 Jan 12 '11 at 17:10
feedback

Try this:

$('<span/>').addClass(spanClass).wrap($('<div/>').addClass(divClass).html()); 

or

$('<div/>').addClass(divClass).append($('<span/>').addClass(spanClass));
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.