Hey guys, I was wondering if using jquery along with angular2 is recommended, or does angular already have native functions for manipulating the DOM as well as jquery?
In my case I wanted a simple task. Just change the height of a div:
var content = jQuery("#content");
var window_h = jQuery(window).height();
var top_bar_h = jQuery(".top-bar").innerHeight();
var nav_bar_h = jQuery(".nav-bar").innerHeight();
var content_h = window_h - (nav_bar_h + top_bar_h);
content.height(content_h);
is there any way I can do this using only angle2? vlw!