I have this code that came from this link for experiment purposes
jQuery: What's the difference between '$(this)' and 'this'?
$("#orderedlist").find("li").each(function(i) {
$(this).append(" BAM! " + i);
});
the code $(this).append(" BAM! " + i);
How do you call the child element of this? for example
$(this + ".className").append(" BAM! " + i);
Something like that, but it doesn't work. Any synthax that works for this kind of stuff?