<input ng-model="searchText" ng-init="searchText ='can you see me'"></input>
Category: field
How to set focus on an input field after rendering?
componentDidMount(){
this.nameInput.focus();
}
how to send enter event to input field jquery
var e = jQuery.Event("keydown");
e.which = 13; //choose the one you want
e.keyCode = 13;
$("#theInputToTest").trigger(e);