thirdPartyTrack

thirdPartyTrack

Event fires when a third party tracker is requested by the ad.

thirdPartyTrack:[name]

Event fires when the third party tracker with the name name is requested by the ad.

ad.on("thirdPartyTrack", function() {
  //run when a third party tracker is fired
});

ad.on("thirdPartyTrack:myTracker", function() {
  //run when the third party tracker called 'myTracker' is fired
});