I have been using jQuery for years. Now, I would like to learn something new to built single page websites. I have chosen AngularJS.
At the moment I am wondering if it is a good idea to use jQuery with AngularJS ?
Example.
I have something like that inside AngularJS controller:
$http.post('ajax/gettimeline', { page: page }).success(function (data) {
        $rootScope.loading = false;
            // Here I need to built dynamic html with getting and setting
            // dynamic elements size, positions, change their properties, etc.
        }
    });
Building those dynamic html elements with jQuery is an easy task. But with AngularJS looks like it will be painful.
Will appreciate any advice.
Thanks
 
     
    