I am building a web application using Angular, and I am trying to find a way to wait until all of the data-ng-include elements have been evaluated and the inclu
data-ng-include
You can try using document.onreadystatechange
document.onreadystatechange
document.onreadystatechange = x => { console.log('ready!'); }