I try to get jQuery object of a submit button in a specific form (there are several forms on the same page).
I managed to get the form element itself. It looks somet
This should work:
var curSubmit = $("input[type=submit]",curForm);
EDIT: Note the missing ' in the selector
'