views:

436

answers:

1

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

+1  A: 

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.

http://stackoverflow.com/questions/416752/select-values-of-checkbox-group-with-jquery/416870#416870

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

Brandon H
Thanks a lot ! I solved the problem , i didn't think about this method , i was concentrated how to get from data from api of script , and i spent a lot of time searching for information to solve the problem , after your answer , i spent only 20 min ... Thanks !
mIRU