Link to home
Start Free TrialLog in
Avatar of Rozamunda
Rozamunda

asked on

how to serialize only certian fields

I have a form - $('#myform')

now I would like to serialize only fields with a certain class

something like  $('#myform.myclass).serialize()

Or even better, only checkoboxes and inputboxes
Avatar of StingRaY
StingRaY
Flag of Thailand image

To serialize only checkbox

$("form input[type=\"checkbox\"]").serialize();

Open in new window


To serialize only input textbox

$("form input[type=\"text\"]").serialize();

Open in new window

Avatar of Rozamunda
Rozamunda

ASKER

ok, how to serialize checkboxes of a certain class ?
ASKER CERTIFIED SOLUTION
Avatar of StingRaY
StingRaY
Flag of Thailand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial