Link to home
Start Free TrialLog in
Avatar of Errol Farro
Errol FarroFlag for Aruba

asked on

Combify auto complete does not return values under certain circumstances

I am using jquery.ui.combify (https://github.com/steelheaddigital/jquery.ui.combify).

The drop-down works very well and it does what I am looking for, especially the auto-complete

However, when there is a text with "&" in the drop-down, the value is not returned.

As per the example below, value 2 is never returned when selected

Any help is greatly appreciated

Example
                  <select id="TwoOptions" name="Two.Options">

                        <option value="1" selected="selected">Some Option</option>

                        <option value="2">Some & Other Option</option>
      
                  </select>
ASKER CERTIFIED SOLUTION
Avatar of Rainer Jeschor
Rainer Jeschor
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Errol Farro

ASKER

Many many thanks !