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\');
The simplest way to get the first result of find is with good old [index] operator:
find
[index]
$('.comment').find('form')[0];
Works like a charm!