I need to send a group of checkboxes (with some other data as well) via ajax in jquery.
What I\'ve done so far is:
var arr = $(\'#somediv input[type
You may be looking for .serialize
A more generic solution would be to have a form with all the parameters and then serialize it.