Hi, let's say I have some links
<a href="#" target="UniqueString_black"></a>
<a href="#" target="dog"></a>
<a href="#" target="duck"></a>
How do I get the value of target attribute starting with "UniqueString_" ? The ID of element is unknown, we need to search by matched "UniqueString" in "target"
I also need to attach this value as link parameter to a known element
<a id="myID" href="someurl&color=black"></a>