vote up 2 vote down star

I would like to create a DOM node, set the 'id' attribute and then append it to 'body'. The following seems not to work because jQuery doesn't see my template as an object. How can I tell jQuery to treat it as an object so find() works on it?

var template = "<li><div class='bar'>bla</div></li>";

template.find('li').attr('id','1234');

$(body).append(template);

flag

74% accept rate

4 Answers

vote up 2 vote down check

I'd put it in the DOM first. I'm not sure why my first example failed. That's really weird.

var e = $("<ul><li><div class='bar'>bla</div></li></ul>");
$('li', e).attr('id','a1234');  // set the attribute 
$('body').append(e); // put it into the DOM

Putting e (the returns elements) gives jQuery context under which to apply the CSS selector. This keeps it from applying the ID to other elements in the DOM tree.

The issue appears to be that you aren't using the UL. If you put a naked li in the DOM tree, you're going to have issues. I thought it could handle/workaround this, but it can't.

You may not be putting naked LI's in your DOM tree for your "real" implementation, but the UL's are necessary for this to work. Sigh.

Example: http://jsbin.com/iceqo

By the way, you may also be interested in microtemplating.

link|flag
You're setting the attribute after the object has been appended... My tests say this doesn't work. – bartclaeys Apr 17 at 10:45
Yeah, it broke for me as well. Weird. I thought I had run it through. Anyway, this version works. – altCognito Apr 17 at 10:50
This version works fine. – altCognito Apr 17 at 10:55
It works, but if your body has more than one 'li' then the attribute is added to all of these... Maybe adding :last will do. – bartclaeys Apr 17 at 11:01
No it won't, that's why the e is there to specify context. – altCognito Apr 17 at 11:02
show 3 more comments
vote up 3 vote down

Try this:

var div = $('<div></div>').addClass('bar').text('bla');
var li = $('<li></li>').attr('id', '1234');
li.append(div);

$('body').append(li);

Obviously, it doesn't make sense to append a li to the body directly. Basically, the trick is to construct the DOM elementr tree with $('your html here'). I suggest to use CSS modifiers (.text(), .addClass() etc) as opposed to making jquery parse raw HTML, it will make it much easier to change things later.

link|flag
This doesn't add the element, I'm guessing because of the body tag, you have to quote it. – altCognito Apr 17 at 10:43
Oh yeah I forgot about that, sorry. Fixed now. – DrJokepu Apr 17 at 10:49
vote up 0 vote down

First make your template into a jQuery object:

 var template = $("<li><div class='bar'>bla</div></li>");

Then set the attributes and append it to the DOM.

 template.find('li').attr('id','1234');
 $(document.body).append(template);

Note that it however makes no sense at all to add a li directly to the DOM since li should always be children of ul or ol. Also it is better to not make jQuery parse raw HTML. Instead create a li, set its attributes. Create a div and set it's attributes. Insert the div into the li and then append the li to the DOM.

link|flag
I would think that sshould work, but it doesn't. (it's in fact exactly what I posted first) see: jsbin.com/eware – altCognito Apr 17 at 10:54
I confirm, it doesn't work :( – bartclaeys Apr 17 at 10:58
vote up 0 vote down

And here is the one liner:

$("<li><div class='bar'>bla</div></li>").find("li").attr("id","1234").end().appendTo("body")

But I'm wondering why you would like to add the "id" attribute at a later stage rather than injecting it directly in the template.

link|flag
1  
This doesn't work, we've been down the road before. I'm wondering if it's a bug, because it really seems like it ought to work, and a number of people have ran into this . – altCognito Apr 17 at 11:09
It works, look at the example: jsbin.com/izeko – gizmo Apr 17 at 11:17

Your Answer

Get an OpenID
or

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