Quantcast
Channel: How to get selected values in SumoSelect dropdown? - Stack Overflow
Browsing all 4 articles
Browse latest View live

Answer by Mazen Elkashef for How to get selected values in SumoSelect dropdown?

I think the cleanest way to do this. Is to take advantage of html5 select element underlying SumoSelect.HTML<select multiple="multiple" class="testSelAll" id="multi-select"><option...

View Article



Answer by Magnus Engdal for How to get selected values in SumoSelect dropdown?

If you want the selected values instead of the text, just change .text() to .val().If you want to get the array, see below with working example at the bottom.jQuery$(document).ready(function() {...

View Article

Answer by brandelizer for How to get selected values in SumoSelect dropdown?

You can get them from underlying hidden select element.using jquery eg.$('.select1 option:selected')

View Article

How to get selected values in SumoSelect dropdown?

I am using the SumoSelect dropdown for multiselect options. But i cannot get the selected values array.Below the sample code :<script type="text/javascript"> $(document).ready(function () {...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images