Changes between Initial Version and Version 1 of Ticket #5154, comment 6
- Timestamp:
- Jan 1, 2011, 3:34:19 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5154, comment 6
initial v1 2 2 > However, there is no easy way of getting this object for some form element. 3 3 4 There is: .serializeArray(). What you want is:4 There is: ''{{{.serializeArray()}}}''. What you want is: 5 5 6 {{{ 6 7 $(..).load('url', $form.serializeArray()); 8 }}} 7 9 8 10 That should do POST and work like the way you want.