Changes between Initial Version and Version 1 of Ticket #8743, comment 5
- Timestamp:
- Apr 1, 2011, 1:40:17 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8743, comment 5
initial v1 1 The correct usage for `.serializeArray()` is either `$('form').serializeArray()` or `$(':input').serializeArray()` but never both, as you'll get duplicates! 1 The correct usage for `.serializeArray()` is either: 2 3 `$('form').serializeArray()` 4 5 or 6 7 `$(':input').serializeArray()` 8 9 but never both, as you'll get duplicates.