Please see my fiddle.
Javascript:
jQuery('.add-com').toggle(function() {
jQuery(this).closest('div').find('.category-commentform').slideDown();
return false;
},
function() {
jQuery(this).closest('div').find('.category-commentform').slideUp();
return false;
});
By clicking the "Post comment one" or "Post Comment second", the comment form will be displayed. My Problem is If I click the "Post comment one" or "Post Comment second" I cannot view the form is there or not. Because lot of comments are displayed before the comment form. My friend suggest to use jquery animate. But I can not to achieve my results. How can i fix this??