I am trying to create a page that contains a form with one field represented by a list of images. The user will select one of the images, enter some additional information and click a button to submit the data back to the server.
I've been able to generate the list using a for-each statement with div elements providing the correct layout and flow. I've looked at using the jQuery Selectable plug-in to manage selecting from the list, highlighting the selected item, etc. but am stuck at how I send the selected information back to the server.
First, I need a way to embed the identifier for each item in the html. Then I need to send the value of the selected item to the server when the form is submitted.
Am I on the right track or heading in the wrong direction? How can I make this work?