I have a theme in HTML, CSS, JAVASCRIPT and Frameworks like Bootstrap, JQuery, etc. have been used.
I intend to implement the theme in an Angular project 2, on certain pages there are animations, DOM manipulations that are made by the manufacturer of the theme that I would like to have on the site as they are in the theme, but with some manipulation of existing information.
How do I provide my information to JQuery from a method / variable of my Angle component?
Ex:
onViewChecked(){
$(".classe-escolhida").click(function(){
alert("Cliclado");
});
}