how to get mat input value on keyup javascript

Solutions on MaxInterview for how to get mat input value on keyup javascript by the best coders in the world

showing results for - "how to get mat input value on keyup javascript"
Toby
11 Jan 2017
1<input type="text" class="form-control" (input)="onSearchChange($event.target.value)">
2onSearchChange(searchValue: string): void {  
3  console.log(searchValue);
4}