Reputation: 16311
I have some jquery code that is doing an ajax lookup and returning comma delimited values (value1, value2, value3...)
I want to prompt the user with these values to find out which one they want.
I'm not having much luck finding an jquery extension that will give me a pop-up window, show list of values and return the seleted value.
Any suggestions?
Upvotes: 0
Views: 1437
Reputation: 11736
There is a JQuery UI library with a Dialog class. You will have to put the values on the form, but it does the modal part with no problem.
http://jqueryui.com/demos/dialog/
Upvotes: 1