How to re-initialize jquery libraries on component load in my angular app?
import $ from "jquery";
ngAfterViewInit() {
//your code
}
Thank you
Therichpost
How to re-initialize jquery libraries on component load in my angular app?
import $ from "jquery";
ngAfterViewInit() {
//your code
}
Thank you
Therichpost
For further actions, you may consider blocking this person and/or reporting abuse
Prateek Kr -
ng-news -
Dharmen Shah -
Alberto Cahuiche -
Top comments (4)
I suggest using stackoverflow for this kind of questions, with code snippets and more detailed example.
On another line I suggest that you should not mix jQuery (imperative framework) with Angular/React/Vue (declarative), you will run into all sort of conceptual and technical problems.
right said
Just skip the jQuery part and you'll be fine
Okay I will try this.