Bootstrap input dropdown, change activation behavior
问题 I'm trying to implement a dropdown box to show search options, much the way the Stack Overflow tag search box works. The search itself is working great, but I can't get the box to show up at the right times. Here's the template: <div class="dropdown"> <input class="entryInput" id="query" name="query" type="text" data-toggle="dropdown"/> <ul class="dropdown-menu" role="menu" aria-labelledby="query"> {{#each queryResults}} <li><a class="result" data-id="{{_id}}">{{firstname}}</a></li> {{/each}}