Reputation: 55
I use this searchbox. Everything is ok, but I want that searchbox to show elements over the searchbox and not under the searchbox. I was looking in css and js files, but I couldn´t find it.
Upvotes: 1
Views: 93
Reputation: 7668
$( ".selector" ).autocomplete({
position: {
my: "center bottom",
at: "center top"
}
});
(obviously add the rest of your code here as usual - only thing you need is the position info)
Upvotes: 2