I tried this:
$(\"#typeahead_object\").val(\"test\");
It only changes the textbox value but doesn\'t trigger the \'updater\' function
You could manually trigger a keyup event on the input element, after setting the value:
keyup
$("#typeahead_object").val('test').focus().trigger('keyup')