Just wonder this for a long time. I have store a variable like, var sth = $("#mydiv ul li"), so I am able to do something like
sth.each(function(){
//
});
now I'd like to add an extra a tag at the end, like $("#mydiv ul li a") how do apply a to sth
should like $(sth + 'a')?