S
S
sergey_from_saratov2017-07-20 16:58:32
JavaScript
sergey_from_saratov, 2017-07-20 16:58:32

Plugin for jquery that connects the functionality of Angular?

Help me find a plugin for jquery that connects the functionality of AngularJS.
For example, to create such a construction in a cycle.

<table> 
<tr ng-repeat="person in people"> 
<td>{{ person.name }}</td> 
</tr> 
</table>

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
Nikita, 2017-07-21
@Rema1ns

(function(){
  $('<script/>')
    .attr('src','https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.5/angular.js')
    .attr('type','text/javascript')
    .appendTo($('head'));
})(jQuery)

Don't thank (lol)

U
User23, 2017-07-20
@User23

Why can't you just use Angular?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question