I have 4 checkboxes. All in form of;
input type="checkbox" name="Group[]" id="Group" value="uniquevalue"
I have 3 of 4 of them checked. How can I send the values that are checked in the form
"a = chkedvalue1 &b = chkedvalue2 &c = chkedvalue3"?
I'm using jquery 1.4.2
Thank you! Spent a whole day with this issue to no avail.
Group[]=chkedvalue1&Group[]=chkedvalue2&Group[]=chkedvalue3(which is how the form data will be encoded using a normal forum submission (this way you can build on things that work)) and then just use jQuery'sserialize()