Bug Tracker

Changes between Initial Version and Version 1 of Ticket #8743, comment 5


Ignore:
Timestamp:
Apr 1, 2011, 1:40:17 PM (12 years ago)
Author:
cowboy
Comment:

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!
     1The correct usage for `.serializeArray()` is either:
     2
     3`$('form').serializeArray()`
     4
     5or
     6
     7`$(':input').serializeArray()`
     8
     9but never both, as you'll get duplicates.