Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

The 4th edition of the Campaign Community Lens newsletter is out now!
SOLVED

setAttribute to an xml creation delivery

Avatar

Level 3

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

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Try to use  .add() method from jsapi

eg.

var proof = xmlTargeting.targets.deliveryTarget.add(<addProofingTarget/>) ;

proof.anyAttribute = something;

...

...

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Try to use  .add() method from jsapi

eg.

var proof = xmlTargeting.targets.deliveryTarget.add(<addProofingTarget/>) ;

proof.anyAttribute = something;

...

...

The ultimate experience is back.

Join us in Vegas to build skills, learn from the world's top brands, and be inspired.

Register Now