I'm looking for a way to target the udp-address-input field within the named-source-add div. The issue I'm facing is that the element id udp-address-input-<+id> changes based on how many named sources are added. However, there is always only one udp-address-input-<+id> element inside the named-source-add div. Is there a way to narrow down my search to just that specific div?
<div id="named-source-add" class="named-div">
<input type="text" class="table-cell" data-bind="textInput: address, attr:
{id: 'udp-address-input-'+id, readonly: readonly, required: role() ==
'destination'}" id="udp-address-input-18">
</div>