Hi all, long time reader/first time poster here.
So I've got a checkbox array that posted just fine to my table when I had an ajax post via:
var createListingString="&features=" + arrayCheckBox;
Now I'm jquerying EVERYTHING (and loving it), but each time I try to post my array with
data: $("#create_listing_1").serialize()
, I just get "array" in the record it creates (instead of the actual values).
My checkboxes are all formatted:
<input type="checkbox" name="features[]" value="Non-smoking" /> Non-smoking <br />
I'm sure that this is probably an easy one, but I'm making it difficult. AND I wanted to post my first question. Everyone here provides some amazing help, thanks for that.