in my knockout template I have something like the below. The div elements render fine but the script element does not load/execute. My script loads some UI and it works everywhere else. For instance, if I just include it in a normal static web page it's UI is rendered as part of the page as it should.
<div data-bind="html: settings.description"></div>
<script type="text/javascript" src="https://testsite.com/mywidget.js"></script>
Anyone has an idea of why the widget does not load when included in a knockout template?
Thanks Hank