$this = $("#myinput");
$thisForm = $("form",$this.parent())

I didn't really read the OP, but I think that's the same as:

$thisForm = $('#myinput').parent().find('form');

Or at that point, might as well do:

$thisSubmit = $('#myinput').siblings('[EMAIL PROTECTED]"submit"]');

--Erik

Reply via email to