I want to return selected text, instead of value. I know how to return value:
$("#myid").multiselect("getChecked").map(function(){
return this.value
}).get().join(",");
but I dont know how to get text. I tried in map function this.text, this.val() and so on, but none of that is working. Please help..