Currently building a website in meteor.js, and I can't seem to figure out how to get the inputted text from my bootstrap selectpicker -- the live search text box doesn't have its own id. My HTML looks like this:
<div class="filter-component">
<h5 class="text-center text-danger"> Name: </h5>
<select ng-model="name" class="nameSelect" data-live-search="true" data-style="btn-primary" ng-options="x for x in names"> <option value="">Nothing selected</option>
</select>
</div>