私は次のようなコメントのdivを持っています
<div>
<div>
Some message over here
</div>
<div style = "height:10px;"> <a id = "post_id_1" class = "showReply" href = "javascript: void(0)">Reply</a></div>
</div>
私の返信ボックス
<div id="replymsgbox" style="display: none;">
<form id="frmComment" novalidate="novalidate" method="POST" name="frmComment">
<div>
<textarea id="comment_text" class="" name="comment[text]"></textarea>
<div id="error_text"> </div>
</div>
<div>
<input type="submit" value="Post" name="Submit">
</div>
</form>
</div>
私のJquery:
//showCommentBox
$('a.showReply').live("click", function(e){
$('#replymsgbox', $(this).parent().next()).slideToggle('fast')
});
誰かが私を助けてくれますか。返信divまたはフォームを開くことができません。私が間違っているところ