I am writing $(this).closest(\'.comment\').find(\'form\').toggle(\'slow\'); and the problem is each of the forms in the child is being toggled. I would like on
$(this).closest(\'.comment\').find(\'form\').toggle(\'slow\');
Use :first selector like below :
:first
$(this).closest('.comment').find('form:first').toggle('slow');