Jquery bootstrap modal vs AngularJS bootstrap modal?
I find some using jquery bootstrap modal in angularJS rather than angular modal?
Is it better to use jquery than angularJS $uibModal(or any angular modal)?
It is considered bad practice to use jquery with angular. jQuery takes a traditional imperative approach to manipulating the DOM, and in an imperative approach, it is up to the programmer to express the individual steps leading up to the desired outcome.
AngularJS, however, takes a declarative approach to DOM manipulation. Here, instead of worrying about all of the step by step details regarding how to do the desired outcome, we are just declaring what we want and AngularJS worries about the rest, taking care of everything for us.
Angelin
Full stack developer and UI designer
It is considered bad practice to use jquery with angular. jQuery takes a traditional imperative approach to manipulating the DOM, and in an imperative approach, it is up to the programmer to express the individual steps leading up to the desired outcome.
AngularJS, however, takes a declarative approach to DOM manipulation. Here, instead of worrying about all of the step by step details regarding how to do the desired outcome, we are just declaring what we want and AngularJS worries about the rest, taking care of everything for us.