Skip to content

Instantly share code, notes, and snippets.

@jharding
Last active May 18, 2018 05:11
Show Gist options
  • Save jharding/9458816 to your computer and use it in GitHub Desktop.
Save jharding/9458816 to your computer and use it in GitHub Desktop.
#scrollable-dropdown-menu .tt-dropdown-menu {
max-height: 150px;
overflow-y: auto;
}
<div id="scrollable-dropdown-menu">
<input class="typeahead" type="text" placeholder="Countries">
</div>
$('#scrollable-dropdown-menu .typeahead').typeahead(null, {
name: 'countries',
limit: 10,
source: countries
});
@antoni-g
Copy link

Just a heads up that this example is broken.

Uncaught TypeError: this.source is not a function typeahead.js:792

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment