Horje
jquery get selected text from multiselect Code Example
jquery get selected text from multiselect
 $("#id :selected").each(function (i,sel) {
   alert($(sel).text());
 });
jquery get selected text from multiselect
$("#fm_delivery_or_collection option:selected").each(function () {
   var $this = $(this);
   if ($this.length) {
    var selText = $this.text();
    console.log(selText);
   }
});
jquery get selected text from multiselect
var text = $('#selector option:selected').toArray().map(item => item.text).join();




Javascript

Related
nested shorthand if javascript Code Example nested shorthand if javascript Code Example
reset form javascript/jquery Code Example reset form javascript/jquery Code Example
how to wait in js Code Example how to wait in js Code Example
javascript fillStyle Code Example javascript fillStyle Code Example
js encode to & Code Example js encode to & Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7