Dropdown (autocomplete) exiting the text field as part of jQuery UI autocomplete: dynamically creates a with z-index: 1 inside the shell, <ul class="ui-autocomplete" style="z-index: 1; ...etc">
You just need to make sure that all autocomplete objects (or even just specific ones) are much higher than the nivo slider.
jsFiddle DEMO (so that it appears, then inspect, you will see style="z-index: 99999;"
$( ".autocompleteThis" ).autocomplete({ source: availableTags, open: function (event, ui) { $('.ui-autocomplete').css('z-index', '99999'); } });β
Use open: function (event, ui) {} to set the z-index autofill there.
source share