Modify ↓
Ticket #3588 (closed feature: invalid)
Allow sub-section of form to be serialized
| Reported by: | pbowyer | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.3 |
| Component: | ajax | Version: | 1.2.6 |
| Keywords: | Cc: | pbowyer, flesler | |
| Blocking: | Blocked by: |
Description
Often I need to do partial form submissions (for inline AJAX lookups). The built-in serialize() and serializeArray() methods will only work when applied to the <form> itself, and not to sub-sections of the form.
Adding this behaviour would be great and mean I don't have to roll my own serialization code!
Attachments
Change History
comment:1 Changed 5 years ago by flesler
- Cc pbowyer, flesler added
- Status changed from new to closed
- Resolution set to invalid
- Type changed from bug to feature
serialize does accept single elements.
$('form *').filter('.foo').serialize()
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.


Demonstration file, showing how serialization doesn't work