I know if i I need to use 3rd party library in angular 1.3 or 1.4 .I need to make directive of that thing and use that in our project .Now I am using angular 2.0 .I want to make this in angular 2
https://jqueryui.com/autocomplete/
or this
https://jsfiddle.net/2rgrmv4q/
can I use jquery
in angular2
.
1.How I will use 3rd party library in angular.
2.How I make auto complete of jquery in angular 2.
here is my code http://plnkr.co/edit/BxMcNXLjVOJBAIiBGL5Y?p=preview
// Code goes here
import {Component,View} from 'angular2/core';
@Component({
selector:'my-app'
templateUrl: 'home/home.html',
})
export class AppComponent {
constructor() { }
}