I have an input that has a knockout binding to the value.
When I update the value using jquery\'s .val() method, the changed value is not reflected in the viewModel.
.val() does not trigger the change event. So, you can just do .val("blah").change() for KO to pick up the changes.
.val()
val("blah").change()