JonWylie
JonWylie

Reputation: 29

How can I implement a multi-line drop down select list with jQuery

I have a select list where some items in the list of choices are multi-line. I heard that there are some jQuery plugins that can help me out. If there's anyone out there with some experience of these I'd much appreciate some suggestions.

thanks,

Upvotes: 0

Views: 5446

Answers (1)

Chad
Chad

Reputation: 19619

I would create a simulation of a dropdown box using jQuery, instead of actually using a <select/> element. This is done all the time for Dropdown's in web navigation menus, so doing something similar in this instance would solve your issue.

Here are some references to get you started:

Upvotes: 1

Related Questions