See example below, where “banner” is the ID of the element we want to make clickable, and the value of clickURL is the desired landing page.
const clickTagPrefix = "${CLICK_URL}",
clickURL = "https://www.example.com",
clickElement = document.getElementById("banner");
function exitHandler(e) {
let clickTag;
try{
__adnamiAdsAPI.v1.tracker.trackExit();
clickTag = clickTagPrefix + clickURL;
}catch{
console.log("Adnami API Unavailable");
clickTag = clickURL;
}
window.open(clickTag, '_blank');
}