From f49d91289d86b2a93a9d3dda375d7df7b3f266af Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Sun, 17 Jan 2010 18:35:54 +0000 Subject: [PATCH] Autocomplete: Set the z-index of the menu to be above the text field. --- ui/jquery.ui.autocomplete.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 27d9ee7d6..26dc0895c 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -235,6 +235,7 @@ $.widget("ui.autocomplete", { } } }) + .zIndex(this.element.zIndex() + 1) // workaround for jQuery bug #5781 http://dev.jquery.com/ticket/5781 .css({ top: 0, left: 0 }) .position({ -- 2.39.5