I\'m currently implementing jQuery UI\'s autocomplete in my clients webshop. The problem is: the element the autocomplete resides in, has a higher z-index then the z-index of th
Use z-index and !important
z-index
!important
.ui-autocomplete { position: absolute; cursor: default;z-index:30 !important;}