I think the problem is that angular creates these elements with javascript, so after the jQuery domready. So jQuery doesn't see those elements into the DOM. What can i do?
HTML
<li ng-prepeat="el in els">{{el.attr}}</li>
JS
$("li").click(function(){ do something });