jQuery-UI's autocomplete not display well, z-index issue

前端 未结 12 1111
情深已故
情深已故 2021-01-31 12:54

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

12条回答
  •  滥情空心
    2021-01-31 13:41

    Give it a try anyway in your css (before script loading), not in firebug:

    .ui-selectmenu-menu {
        z-index:100;
    }
    

    In my case this works and creates z-indexes like : 100x (for example 1002)

提交回复
热议问题