Within my view, I have the following code snippet:
<ul data-bind="foreach: caseStudies">
<li><a data-bind="text: title, attr: { href: caseStudyUrl }"></a></li>
</ul>
I am looking to execute some 3rd Party script after knockout has updated the DOM.
caseStudies(data);
thirdPartyFuncToDoStuffToCaseStudyLinks(); <-- DOM not yet updated.
Is there a way to tap into knockout's functionality in order to trigger this at the right moment?