I want to get the array of all the formElements except some input type
having specific name. I know the normal way is $
('#form1').serializeArray() but how to use selectors to get me array
of all elements except some elements having given name as "method" and
"trId"?

Let me give you a example
I have form as
<form id="form1">
<input type=hidden name=method>
<input type=hidden name=trId>
<input type=hidden name=appli>
<input type=textbox name=text1>
</form1>

I want to serializeArray of "form1" where it should not have fields
such a "method" and "trId"
How to achieve this

Thanks in advance

CSJakharia

Reply via email to