Published
- 1 min read
jquery get selected text from multiselect
The solution for this is noted below
jquery get selected text from multiselect
Solution
$('#fm_delivery_or_collection option:selected').each(function () {
var $this = $(this)
if ($this.length) {
var selText = $this.text()
console.log(selText)
}
})
Try other methods by searching on the site. That is if this doesn’t work