Angular bind in directive to execute after event "change"

0

I'm working with a framework that uses Jquery to make its animations, and for data processing I use AngularJS. So that I can update my $ scope, I've created a directive that will bind the element and generate assign events to elements in it. so

element.bind('change', function () {
    console.log(e.find('div'));
});

My problem is that the angle is processing this directive before the element undergoes the changes and thus not returning the existing divs at the end of the onchange ... does anyone know how I can resolve this?

    
asked by anonymous 19.02.2016 / 14:22

0 answers