[jQuery] $(this).parent() Internet Explorer and multiple forms
I have a situation where I have rows of data, that have forms for each
row that submit similar data. I only want to submit the form via
$.validate() from the select box within that form so as to not confuse
that row's form data with any other row's. the problems lies within IE
6/7 because using $(this).parent() to get at the select's parent form,
in IE no object is available for the form. As usual FireFox reports
back the form object, but IE doesn't.
Here's the code:
$(this).parent('form#licoptform').validate({
rules: {},
submitHandler: procaddlicense
});