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\');
using jquery simply use:
$( "form" ).first().toggle('slow');