mIRU
mIRU

Reputation: 617

jQuery MultiSelect , how to get information about selected options

I have a problem , i know only the basics of jQuery , and i need to get the information with JavaScript about selected options from the list , i wasted 2 days searching for a good method , but without success , please help ... script of MultiSelect is here link text , I need only to get the title of selected option and numbers of selected elements , or to give idea how to do... Sorry for my English

Upvotes: 3

Views: 5000

Answers (1)

Brandon Henry
Brandon Henry

Reputation: 3720

it turns your select box into a bunch of checkboxes. so you'd get the info the same way you'd get it from checkboxes.

Select values of checkbox group with jQuery

if your multiple select box had id='option8' then your checkboxes would have name='option8[]'

Upvotes: 2

Related Questions