Dropdown With Autocomplete Overlaps With Other Dropdown With Autocomplete Or A Radio Button In A Repeated Field
In a WordPress website I use a form plugin which have incorporated the 'chosen jQuery plugin' (https://harvesthq.github.io/chosen/)'. If my form I use a repeated field option which
Solution 1:
in your .chosen-drop
add position and z-index it will works
.chosen-with-drop .chosen-drop{
z-index:1000!important;
position:static!important;
}
Post a Comment for "Dropdown With Autocomplete Overlaps With Other Dropdown With Autocomplete Or A Radio Button In A Repeated Field"