I\'m attempting to create a web page using the jQuery ui lib. My design uses a jQuery ui autocomplete on an input field at the top of a form. Immediately below this autocomp
Using the open and close events to modify the z-index worked for me:
$( "#tags" ).autocomplete({ source: availableTags, open: function(event, ui) { $(".ui-slider-handle").css("z-index", -1); }, close: function(event, ui) { $(".ui-slider-handle").css("z-index", 2); } });
See a demo here.