How can I filter for all id's that begin with "pre" or "radio"?
$.each($(':input[id^="pre"]',':input[id^="radio"]').serializeArray(), function() {
|
|
|
your selector was a bit off:
or if you want to serialize the set of returned objects:
|
|||
|
|
|
Don't break your selectors up as separate strings:
Multiple selectors are a single string. See this fiddle. I think this is what you're trying to do. |
|||
|
|
|
|
|||||
|