jquery-flexselect
jquery-flexselect copied to clipboard
:muscle::ballot_box_with_check: A jQuery plugin that turns regular select boxes into Quicksilver-like, flex-matching, incremental-finding controls.
I load in my select dynamically like below, and it nearly works except the UL generated by flex select is empty (Otherwise this awesome, I hate to point this out!!...
The plugin works fine except that there is a problem with Safari on Mac. The problem is that, with the number of possibilities listed under a control limited to 10,...
Hi, is it possible to expand options when dom is ready or when a procedure is met?
Currently there's an issue in behavior which allows to enter an irrelevant value into the input. The steps to reproduce are as follows: - Start typing an irrelevant value -...
Hi, I am using flexselect jquery with jquery version 2.2. In this key up and key down is not working properly Advance Thanks
Line 108: Show results if picked option is blank. If a blank option was present, results would previously not show on focus. Line 315: Change `setValue.val("");` to `setValue("");`. This will...
Consider the following example: ``` George Washington John Adams Thomas Jefferson ``` This select is then allowed to mismatch: ``` $("select.flexselect").flexselect({ allowMismatch: true }); $('#test').click(function() { alert($('#myflex').val(); }); ``` The...
When allowMismatch is enabled, if the user first selects an option and then enter a custom value the value of the first selected item is still associated to the field...