Expand my Community achievements bar.

Join us for an upcoming in-person Adobe Target Skill Builders event ~~> We're hosting these live learning opportunities to equip you with the knowledge and skills to leverage Target successfully. Learn more to see if we'll be coming to a city near you!
SOLVED

AB-Test: Trigger JS-function at pageload

Avatar

Level 2

I have a JS-Function window.addButton(text, url) that I want to trigger when the page is loaded. Each variant of ABC-Test loads the function with different input:

 

Variant A: window.addButton('test1', 'testUrl1')

Variant B: window.addButton('test2', 'testUrl2')

Variant C: window.addButton('test3', 'testUrl3')

 

What is the best way to implement this function in Adobe Target?

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Hi @janwal 

You can use custom code option and write your code inside onload function. 

For eg. Window.onload = function(){window.addButton(text, url) };

If this is not getting fired you can place this code inside timeout function.

View solution in original post

1 Reply

Avatar

Correct answer by
Employee Advisor

Hi @janwal 

You can use custom code option and write your code inside onload function. 

For eg. Window.onload = function(){window.addButton(text, url) };

If this is not getting fired you can place this code inside timeout function.