I am trying to use jQuery autocomplete in angular 2 rc4 version but i am getting error as 'property autocomplete does not exist on type jquery'
My HTML is :
<input class="search" id="search-input" type="text" placeholder="Search"/>
& my app.component.ts is
heroes:any = [100,200,101];
ngOnInit(): void {
jQuery( "#search-input" ).autocomplete({
source: this.heroes
});
}
expected result should be when i enter 1 in input box then 100 and 101 should pop up and i can move along result using arrow keys.
I already installed JQuery typings as my other jQuery functionsworks well and i also tried to use solution from https://www.npmjs.com/package/ang2-autocomplete, but i think its for another versions of angular rc.
Thanks in advance.