2
Eai personal, I wanted to know if the use of jquery along with angular2 is recommended, or the angular already has native functions for DOM manipulation as well as jquery?
my case I wanted for 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 angular2? vlw!
obgd for the @utluiz reply
– Henrique.Araujo