Есть много div.post
. Мне нужно выбрать один из них ... тот, который имеет $(.comment_this').attr('rel')
. А затем добавьте новый тег в <!-- Here! -->
месте. Есть идеи?
FireBug говорит, что parent () не является функцией ... jQuery 1.6.1.
<div class="post">
<div class="post_head"><div> </div></div>
<div class="post_body">
<!-- ... -->
<div class="options">
<a class="gray_button comment_this" href="#" rel="123">Comments</a>
<span class="gray_txt">0 comments</span>
</div>
<!-- Here! -->
</div>
<div class="post_bottom"><div> </div></div>
</div>
Это то, что у меня есть ...
$('.post .comment_this').attr('rel').parent().html('foo');