weaveoftheride
weaveoftheride

Reputation: 4395

HTML input submit a list of items that are variable

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

Answers (1)

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

Related Questions