I've got the following situation:
There is a table provided with the following data attribute name
and value
: data-specificationattributename="Basiseenheid"
in the following table row:
<tr class="even" data-specificationattributename="Basiseenheid">
<td class="a-left spec-namehide">
Basiseenheid
</td>
<td class="a-left spec-valuehide">
KG
</td>
</tr>
What I like is get the value (KG) on the basis of the data attribute and append this to the following div
"span.qty unit-result"
:
<div class="qty-unit">
<span class="qty-unit-result"></span>
</div>
Hopefully someone can show me how to do this.