Как мне найти в jQuery первый тег a внутри каждого $(".tweet li") и сделать так, чтобы он имел класс 'toptweet' ???
a
$(".tweet li")
toptweet
$('.tweet li').each(function() { $(this).find('a:first').addClass('toptweet'); });
$(".tweet li").each(function(){ $(this).find("a:eq(0)").addClass("toptweet"); });
$('.tweet li').each(function(){ $(this).find('a').first().addClass('toptweet'); });
$(".tweet li a:first").addClass('toptweet');
$("li.tweet").("a:eq(1)").addclass