I have the following div:
<div style="font-size:15px;" class="title">
<div>{{specialOffer.Name}}</div>
</div>
I need to execute a JS function after {{specialOffer.Name}} is replaced with its value. Sorry, I'm an Angular newbie, trying to solve some bugs on an existing code.
I tried $(document).ready or window.onload, but these events get fired too quickly.