vote up 1 vote down star
1

I've got a cached jquery object setup like this

var comments = $('li.comment');

When creating new elements, is there an easy way to update the comments objects instead of redfining it? I'm looking fot something like

comments += $('li.newcomment');

Is this possible?

flag

1 Answer

vote up 4 vote down check
$("li.comment").add("li.newcomment");
link|flag
Thanks, I knew it was simple... :) – yoavf Feb 16 at 11:55

Your Answer

Get an OpenID
or

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