I have a table that looks something like so\[code\]<table id="grid" class="table table-bordered table-hover table-inline"> <thead> <tr> <th>Id</th> <th>Dropdown List</th> <th><input id="selectAll" type="checkbox" /></th> </tr> </thead> <tbody data-bind="foreach: stuff <tr> <td data-bind="text: someId"></td> <td> <select class="input-medium" data-bind="options: someStuff, optionsText:'DisplayName', optionsValue:'StandardCode'"></select> </td> <td> <input type="checkbox" data-bind="value: someId"/> </td> </tr> </tbody></table>\[/code\]and then im my javascript I am iterating through the selected rows like this \[code\]$('grid input[type="checkbox"]:checked').each(function () { var someSelectedId= $(this).val(); var dropDownlistValue= http://stackoverflow.com/questions/15526345/?? });\[/code\]I am using knockout to bind my data to the table and the drop down.When i am iterating through the rows how do i get the selected value in the drop down list for each row as i am iterating through them? For the life of me i cant seem to figure it out. Thanks!