I went to the site you specified above and was able to run it on my Chrome console:
$('.ui-multiselect .selected li').each(function(idx,el){ console.log(el.title); });
, , , div.selected.
Edit:
Doh! , , . . . jQuery data(). , , "optionLink". option. ".selected" jQuery.data(), .
, , , "optionLink" jQuery , .
:
$('.ui-multiselect .selected li').each(function(idx,el){
console.log(el);
var link = $(el).data('optionLink');
if(link){
console.log(link.val());
}
});
, . . , - . getSelectedOptions() .