> This is for a CMS so I'm not really that concerned with it validating (as
> long as it works).
Nested forms are not valid markup. I think it makes more sense to
handle these special fields manually. Do they simply need to be
cleared? If so, you'll be able to use the new clearForm method of the
form plugin without affecting the rest of the form (as long as there
is a containing element around these special fields.) For example:
<form>
<input ...>
<input ...>
<div id="container">
<input ...>
<input ...>
</div>
</form>
$("#container").clearForm();
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/