- The landing page URL is controlled by the AdServer.
Below is the JS variable that contains the landing page URL
params.clickTag
- When the creative is clicked, it must open params.clickTag in a new tab
- There are multiple ways to accomplish that, you can find some examples below
Example: Changing the href attribute of an <a> tag
...
Example: Adding the onclick attribute to the container tag
...
Example: Using the addEventListener function
...
- Creative must not use javascript: href property on <a>elements as this will cause issues in Firefox
DO NOT USE! This is a bad example of implementing the redirect to params.clickTag
...