I have a form which I am validating in the beforeSubmit function. Can
the formData array be accessed by name? That is, is there something
like formData[name='foobar'] that I can write (to access the
form element named foobar, or is it necessary to traverse the array
looking for the item with a given name?
I want to use jquery forms but my form is in a tab which is loaded
dynamically by ajax. I am not sure where/when/how to enable the form.
I think I need to put the enabling call
{$('#myForm').ajaxForm} somewhere so it can be called after the
tab containing the form is loaded, but I don't know how. Can
someone help? Thanks.
--Len
My html code is below. I have an external file which contains the
same form (different id) in the third tab. The second tabs submission
is intercepted; the external, not surprisingly is not intercepted. I
don't know where to put the call so the dynamically loaded
form's submission is also intercepted. Thanks.