I currently use this code snippet to get the parallax effect:
ngAfterViewInit(){
if(isBrowser) {
$('.parallax').parallax();
}
}
I want to know if there is another way to use the jquery plugins and not have to validate on all the components with isBrowser