Open
Description
If the search field is within an overflow element (like <div style="overflow: hidden">
), you can already append the suggestion menu to another DOM element.
$('.typeahead').typeahead({
// ...
menu: $('div-on-body')
}, /* dataset */);
In order to position the suggestion menu under the search field, you must do the calculations for top, left and width by yourself.
Wouldn't it be great if there is an "append-to-body" mode that makes these calculations for you?