I'm using Knockout.js and have a drop down list of items that appears when the user begins typing in a search box (live filtering). Currently, the user can arrow through the list and hit enter to populate the search box.
There is a live version in my personal site sandbox.
However, I want the user to be able to scroll through the list as well and click on items. I can't quite figure out the location of these list items in the DOM because Knockout.js dynamically adds them in.
Here's the particular portion of code that is in question:
<div class="hidden" id='dropdown'>
<ul id='dropdownList'
data-bind="template: { name:'objects', foreach:obj },
click: function(){ $('#search').text(($(this).val());}">
</ul>
</div>
