So what I've so far is a plugin which pretend to work like <select> but with few changes.
There is search field in it, and what I want to do is highlight value that is found (or make text with decoration: underline).
Problem is, I don't know how to properly operate with values, and completely don't have and idea how I can insert tags (like <div> or <i>) before and after value that was found.
JSFiddle is here: http://jsfiddle.net/kspD8/
You can find code which performs operations on search in line 269:
$this.find('.ms-column:contains("' + value + '")').parents('.multiple-selector-table-row').show(); If you are not able to find it, look for section:
/* =========================================================== Keyup in search field =========================================================== */ Please note that due to plugin logic, you will not be able to select any other field, other than you've selected before (not a bug, just warning).
If you have any questions please feel free to ask.