I\'ve got an input with google autoComplete connected.
input
google autoComplete
When the user moves up and down through the seachResultsthe value of t
seachResults
Consider creating and triggering input events
var event = new Event('input', { bubbles: true, cancelable: true, });
then
myelement.dispatchEvent(event);
more info