Reputation: 4395
I've got a Jquery UI sortable list with add item option. I want to gather these items up and submit them. what input type should I use?
Upvotes: 0
Views: 51
Reputation: 5734
Use the serialize
method of the sortable object (http://api.jqueryui.com/sortable/). This method returns a string that you can send using a text input or a hidden one.
Upvotes: 1