In this situation, I have a simple form, not generated by Zend:
<form id='com-prefs'>
<input type='checkbox' name='accept-sms' />
<input type='checkbox' name='accept-phone' />
<input type='checkbox' name='accept-email' />
<!-- etc -->
</form>
The form is longer than this, but it's essentially just more inputs. Zend_Form's form creation seems bloated, and since I'll be working on this project with others, I don't feel like complicating things with Zend form creation. However, Zend_Form's validation seems much more useful, and I'd like to use it through Ajax.
My question is, how do I grab the above form with jQuery (or just regular JS), and convert it into something that I can make into a Zend_Form easily to use the below:
$form->isValid();
Is serializeArray() the route I want to go?
EDIT: Using ZF1