I have a cached jquery object setup like this
var comments = $('li.comment');
When creating new elements, is there an easy way to update comment objects rather than refinancing them? I'm looking for something like
comments += $('li.newcomment');
Is it possible?
yoavf source
share