Hello, I'm creating a delivery via JS and I'm trying to add an attribute dynamically to this code:
var xmlTargeting =
<delivery>
<targets>
<deliveryTarget/>
</targets>
<variables/>
<scheduling/>
</delivery>;
I've tryed xmlTargeting.targets.setAttribute("addProofInTarget","true");
but I got an error: xmlTargeting.targets.setAttribute is not a function.
Any idea on the right code?
thanks