動的に挿入されるdivで関数toggleを使用していますが、特定の要素のみを実行する代わりに、toggleはすべてのdivコンテンツを実行します。
HTML:
<div style="text-align: center;">
<p class="button-style add-comment"><a href="#">Add Comment</a></p>
<div class="insert-comment" style="display: none;">
<textarea rows="8" cols="50" class="insert-comment-text"></textarea>
</div>
</div>
jQuery:
$(document).on('click', '.add-comment', function(e){
$(".insert-comment").toggle();
});
すべてではなく特定のdivだけを開くにはどうすればよいですか?