> For the complete documentation index, see [llms.txt](https://docs.exads.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.exads.com/publishers/sites-and-zones/using-tags.md).

# Using Tags

As a Publisher, you can use tags (keywords) to tell the ad server what kind of content sits on each of your pages, so the advertising you receive matches it more closely.

## Improving Your Advertising Matches

Two methods identify content on your web pages, so you get the most appropriate advertising:

### Method 1: URL Detection Matches <a href="#method-1-url-detection-matches" id="method-1-url-detection-matches"></a>

In this example, <https://www.humourgames.com/>, the detected keywords are "humour" and "games". If your URL contains any category used by advertisers on the network, you receive advertising based on this match.

### Method 2: Tags (Keywords) in Your Ad Zones <a href="#method-2-tags-keywords-in-your-a-d-zones" id="method-2-tags-keywords-in-your-a-d-zones"></a>

In many cases your URL does not match a category precisely. In these cases, you can insert 'tags' into the code in your ad zones to manually match them to the type of advertising you want.

For example, you could insert the tags 'general' and 'humour' into your ad zone code, to ensure that you receive this type of advertising.

Depending on which format you are adding tags to, there are a few different ways of doing it, from `ad_tags`, `&ad_tags`, `tags`, `&tags`, to `data-tags` and `data-ad_tags`. See the examples below for exactly how to do it for each format.

{% hint style="info" %}
**Note**: Separate multiple tags with commas.
{% endhint %}

### Notes About Tags <a href="#notes-about-tags" id="notes-about-tags"></a>

* Using the tag (keyword) method takes priority over the URL keyword method. Therefore, if the ad zone contains the tag "humour" but the URL contains the word "games", the priority for the advertising to target your site(s) is products for the "humour" keyword.
* Currently, only the URL and tag methods determine the category of advertising you receive.

## Examples of Tags in Use <a href="#examples-of-tags-in-use" id="examples-of-tags-in-use"></a>

In the examples below, the tags 'humour' and 'general' have been added to the ad zone codes for a banner ad.

## Web <a href="#web" id="web"></a>

### Banner <a href="#banner" id="banner"></a>

**Asynchronous Script**

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://a.examplesite.com/ads.js"></script>
<ins class="adsbynetwork" data-zoneid="3553853" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

**iFrame**

Added `&tags`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<iframe src="//a.examplesite.com/iframe.php?idzone=1234567&size=300x250&tags=general,humour" width="300" height="250" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
```

{% endcode %}

### Popunder <a href="#popunder" id="popunder"></a>

When you create your **Popunder Zone HTML** tag, you can choose from two options:

* **Inline + Remote Script (Recommended)**: This is the recommended format, as it enables popunders to continue working when ad blockers are installed.
* **Remote Script Only**: This format relies only on the remote script. It does not provide an inline fallback.

**Inline + Remote Script (Recommended)**

Added `tags`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript">
(function() {

    //version 1.0.0

    var adConfig = {
    "ads_host": "a.examplesite.com",
    "syndication_host": "syndication.examplesite.com",
    "idzone": 1234567,
    "popup_fallback": false,
    "popup_force": false,
    "chrome_enabled": true,
    "new_tab": false,
    "frequency_period": 720,

    "frequency_count": 1,
    "trigger_method": 3,
    "trigger_class": "",
    "only_inline": false,
    "tags": "general,humour"
};
```

{% endcode %}

**Remote Script Only**

Added `ad_tags`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript">
    var ad_idzone = "1234567",
    ad_popup_fallback = false,
    ad_popup_force = false,
    ad_chrome_enabled = true,
    ad_new_tab = false,
    ad_frequency_period = 720,
    ad_frequency_count = 1,
    ad_trigger_method = 3,
    ad_tags='general,humour';
</script>
<script type="application/javascript" src="https://a.examplesite.com/popunder1000.js"></script>
```

{% endcode %}

### Instant Message <a href="#instant-message" id="instant-message"></a>

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="1234567" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

### Sticky Banner <a href="#sticky-banner" id="sticky-banner"></a>

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="1234567" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

### Desktop Fullpage Interstitial <a href="#desktop-fullpage-interstitial" id="desktop-fullpage-interstitial"></a>

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="1234567" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

### Email Banner <a href="#email-banner" id="email-banner"></a>

**Simple Image Tag**

Added `tags`='keywords'

{% code overflow="wrap" expandable="true" %}

```html
<a href="https://s.examplesite.com/click.php?idzone=123&idnewsletter=newsletter20250321&iduniq=456" target="_blank">
  <img src="https://s.examplesite.com/ads-iframe-display.php?idzone=123&tags=keywords&idnewsletter=newsletter20250321&iduniq=456" width="300" height="250">
</a>
```

{% endcode %}

## Video <a href="#video" id="video"></a>

### In-Video Banner (JavaScript) <a href="#in-video-banner-javascript" id="in-video-banner-javascript"></a>

This format does not currently support the use of tags.

### In-Stream Video (VAST) <a href="#in-stream-video-vast" id="in-stream-video-vast"></a>

Added `&tags`='general, humour'

```
https://syndication.examplesite.com/v1/vast.php?idzone=1234567&tags=general,humour
```

### In-Video Banner (VAST) <a href="#in-video-banner-vast" id="in-video-banner-vast"></a>

Added `&tags`='general, humour'

```
https://syndication.examplesite.com/v1/vast.php?idzone=1234567&tags=general,humour
```

### Video Slider <a href="#video-slider" id="video-slider"></a>

**Asynchronous Script**

Added `data-keywords`='general,humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="123456" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

### Outstream Video <a href="#outstream-video" id="outstream-video"></a>

**Asynchronous Script**

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://a.examplesite.com/video-outstream.js"></script>
<ins class="adsbynetwork" data-zoneid="1234567" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

**iFrame**

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript"
    data-idzone="1234567"
    data-keywords="general,humour"
    src="https://a.examplesite.com/video-outstream.js" async
></script>
```

{% endcode %}

## Mobile <a href="#mobile" id="mobile"></a>

### Mobile Banner <a href="#mobile-banner" id="mobile-banner"></a>

**Asynchronous Script**

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://a.examplesite.com/ads.js"></script>
<ins class="adsbynetwork" data-zoneid="4104108" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

**iFrame**

Added `&tags`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<iframe src="//a.examplesite.com/iframe.php?idzone=1234567&size=300x250&tags=general,humour" width="300" height="250" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
```

{% endcode %}

### Mobile Popunder <a href="#mobile-popunder" id="mobile-popunder"></a>

When you create your **Popunder Zone HTML** tag, you can choose from two options:

* **Inline + Remote Script (Recommended)**: This is the recommended format, as it enables popunders to continue working when ad blockers are installed.
* **Remote Script Only**: This format loads only the remote script, so it cannot recover ad-blocked traffic. Ad blockers often list the remote script URL, and when it is blocked no ad is served.

**Inline + Remote Script**

Added `tags`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript">
(function() {

    //version 1.0.0

    var adConfig = {
    "ads_host": "a.examplesite.com",
    "syndication_host": "syndication.examplesite.com",
    "idzone": 1234567,
    "popup_fallback": false,
    "popup_force": false,
    "chrome_enabled": true,
    "new_tab": false,
    "frequency_period": 720,
    "frequency_count": 1,
    "trigger_method": 3,
    "trigger_class": "",
    "only_inline": false,
    "tags": "general,humour"
};
```

{% endcode %}

**Remote Script Only**

Added `ad_tags`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript">
  var ad_idzone = "1234567",
  ad_popup_fallback = false,
  ad_popup_force = false,
  ad_chrome_enabled = true,
  ad_new_tab = false,
  ad_frequency_period = 720,
  ad_frequency_count = 1,
  ad_trigger_method = 3,
  ad_tags = "general,humour";
</script>
<script type="application/javascript" src="https://a.examplesite.com/popunder1000.js"></script>
```

{% endcode %}

### Mobile Instant Message <a href="#mobile-instant-message" id="mobile-instant-message"></a>

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="1234567" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

### Mobile Fullpage Interstitial <a href="#mobile-fullpage-interstitial" id="mobile-fullpage-interstitial"></a>

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="1234567" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

## Native <a href="#native" id="native"></a>

### Recommendation Widget <a href="#recommendation-widget" id="recommendation-widget"></a>

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="1234567" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

## Push Notification <a href="#push-notification" id="push-notification"></a>

This format does not currently support the use of tags.

## Multi-Format <a href="#multi-format" id="multi-format"></a>

Added `data-keywords`='general, humour'

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://a.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="4278920" data-keywords="general,humour"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

## Custom Targeting Tags <a href="#custom-targeting-tags" id="custom-targeting-tags"></a>

A Network Admin User can set key-value pairs for custom targeting. Once they are set up, you can pass one value per key with each ad request, and advertisers can target those keys and values in their campaigns. For example, if you pass a custom key-value of age=18, campaigns targeting that age range become eligible to serve ads in your ad zone, provided all other criteria match.

Below are examples of some custom targeting tags for different ad formats:

![](https://2421941036-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoiffCg2y27CXM9bLruG3%2Fuploads%2FpMnoWVc93oUbDYYTzkWs%2Fcustom-targeting-publishers.png?alt=media\&token=ba45b694-6278-4d8d-8873-818c8e68cb36)

### Banner <a href="#banner-1" id="banner-1"></a>

**Asynchronous Script**

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://a.examplesite.com/ad-provider.js"></script> 
 <ins class="adsbynetwork" data-zoneid="2924594"  data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"></ins> 
 <script>(AdProvider = window.AdProvider || []).push({"serve": {}});</script>
```

{% endcode %}

**iFrame**

{% code overflow="wrap" expandable="true" %}

```html
<iframe src="//a.examplesite.com/iframe.php?idzone=4813935&size=300x250&ex_ranges=1234&ex_car-brand=name&ex_credit-score=1234&ex_uuid=a1b2c3&ex_numbers=1234" width="300" height="250" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
```

{% endcode %}

### Popunder <a href="#popunder-1" id="popunder-1"></a>

**Inline + Remote Script (Recommended)**

{% code expandable="true" %}

```html
<script type="application/javascript">
(function() {

    //version 1.0.0

    var adConfig = {
    "ads_host": "ads.examplesite.com",
    "syndication_host": "syndication.examplesite.com",
    "idzone": 4813937,
    "popup_fallback": false,
    "popup_force": false,
    "chrome_enabled": true,
    "new_tab": false,
    "frequency_period": 720,
    "frequency_count": 1,
    "trigger_method": 3,
    "trigger_class": "",
    "only_inline": false,
    "t_venor": false,
    "ex_ranges": "1234",
    "ex_car-brand": "name",
    "ex_credit-score": "1234",
    "ex_uuid": "a1b2c3",
    "ex_numbers": "1234"
};

window.document.querySelectorAll||(document.querySelectorAll=document.body.querySelectorAll=Object.querySelectorAll=function(o,e,t,i,n){var r=document,c=r.createStyleSheet();for(n=r.all,e=[],t=(o=o.replace(/\[for\b/gi,"[htmlFor").split(",")).length;t--;){for(c.addRule(o[t],"k:v"),i=n.length;i--;)n[i].currentStyle.k&&e.push(n[i]);c.removeRule(0)}return e});var popMagic={version:1,cookie_name:"",url:"",config:{},open_count:0,top:null,browser:null,venor_loaded:!1,venor:!1,configTpl:{ads_host:"",syndication_host:"",idzone:"",frequency_period:720,frequency_count:1,trigger_method:1,trigger_class:"",popup_force:!1,popup_fallback:!1,chrome_enabled:!0,new_tab:!1,cat:"",tags:"",el:"",sub:"",sub2:"",sub3:"",only_inline:!1,t_venor:!1,cookieconsent:!0},init:function(o){if(void 0!==o.idzone&&o.idzone){for(var e in this.configTpl)this.configTpl.hasOwnProperty(e)&&(void 0!==o[e]?this.config[e]=o[e]:this.config[e]=this.configTpl[e]);void 0!==this.config.idzone&&""!==this.config.idzone&&(!0!==this.config.only_inline&&this.loadHosted(),this.addEventToElement(window,"load",this.preparePop))}},getCountFromCookie:function(){if(!this.config.cookieconsent)return 0;var o=popMagic.getCookie(popMagic.cookie_name),e=void 0===o?0:parseInt(o);return isNaN(e)&&(e=0),e},shouldShow:function(){if(popMagic.open_count>=popMagic.config.frequency_count)return!1;var o=popMagic.getCountFromCookie();return popMagic.open_count=o,!(o>=popMagic.config.frequency_count)},venorShouldShow:function(){return!popMagic.config.t_venor||popMagic.venor_loaded&&"0"===popMagic.venor},setAsOpened:function(){var o=1;o=0!==popMagic.open_count?popMagic.open_count+1:popMagic.getCountFromCookie()+1,popMagic.config.cookieconsent&&popMagic.setCookie(popMagic.cookie_name,o,popMagic.config.frequency_period)},loadHosted:function(){var o=document.createElement("script");for(var e in o.type="application/javascript",o.async=!0,o.src="//"+this.config.ads_host+"/popunder1000.js",o.id="popmagicldr",this.config)this.config.hasOwnProperty(e)&&"ads_host"!==e&&"syndication_host"!==e&&o.setAttribute("data-exo-"+e,this.config[e]);var t=document.getElementsByTagName("body").item(0);t.firstChild?t.insertBefore(o,t.firstChild):t.appendChild(o)},preparePop:function(){if("object"!=typeof exoJsPop101||!exoJsPop101.hasOwnProperty("add")){if(popMagic.top=self,popMagic.top!==self)try{top.document.location.toString()&&(popMagic.top=top)}catch(o){}if(popMagic.cookie_name="zone-cap-"+popMagic.config.idzone,popMagic.config.t_venor&&popMagic.shouldShow()){var o=new XMLHttpRequest;o.onreadystatechange=function(){o.readyState==XMLHttpRequest.DONE&&(popMagic.venor_loaded=!0,200==o.status&&(popMagic.venor=o.responseText))};var e="https:"!==document.location.protocol&&"http:"!==document.location.protocol?"https:":document.location.protocol;o.open("GET",e+"//"+popMagic.config.syndication_host+"/venor.php",!0);try{o.send()}catch(o){popMagic.venor_loaded=!0}}if(popMagic.buildUrl(),popMagic.browser=popMagic.browserDetector.detectBrowser(navigator.userAgent),popMagic.config.chrome_enabled||"chrome"!==popMagic.browser.name&&"crios"!==popMagic.browser.name){var t=popMagic.getPopMethod(popMagic.browser);popMagic.addEvent("click",t)}}},getPopMethod:function(o){return popMagic.config.popup_force?popMagic.methods.popup:popMagic.config.popup_fallback&&"chrome"===o.name&&o.version>=68&&!o.isMobile?popMagic.methods.popup:o.isMobile?popMagic.methods.default:"chrome"===o.name?popMagic.methods.chromeTab:popMagic.methods.default},buildUrl:function(){var o="https:"!==document.location.protocol&&"http:"!==document.location.protocol?"https:":document.location.protocol,e=top===self?document.URL:document.referrer,t={type:"inline",name:"popMagic",ver:this.version};this.url=o+"//"+this.config.syndication_host+"/splash.php?cat="+this.config.cat+"&idzone="+this.config.idzone+"&type=8&p="+encodeURIComponent(e)+"&sub="+this.config.sub+(""!==this.config.sub2?"&sub2="+this.config.sub2:"")+(""!==this.config.sub3?"&sub3="+this.config.sub3:"")+"&block=1&el="+this.config.el+"&tags="+this.config.tags+"&cookieconsent="+this.config.cookieconsent+"&scr_info="+function(o){var e=o.type+"|"+o.name+"|"+o.ver;return encodeURIComponent(btoa(e))}(t)},addEventToElement:function(o,e,t){o.addEventListener?o.addEventListener(e,t,!1):o.attachEvent?(o["e"+e+t]=t,o[e+t]=function(){o["e"+e+t](window.event)},o.attachEvent("on"+e,o[e+t])):o["on"+e]=o["e"+e+t]},addEvent:function(o,e){var t;if("3"!=popMagic.config.trigger_method)if("2"!=popMagic.config.trigger_method||""==popMagic.config.trigger_method)popMagic.addEventToElement(document,o,e);else{var i,n=[];i=-1===popMagic.config.trigger_class.indexOf(",")?popMagic.config.trigger_class.split(" "):popMagic.config.trigger_class.replace(/\s/g,"").split(",");for(var r=0;r<i.length;r++)""!==i[r]&&n.push("."+i[r]);for(t=document.querySelectorAll(n.join(", ")),r=0;r<t.length;r++)popMagic.addEventToElement(t[r],o,e)}else for(t=document.querySelectorAll("a"),r=0;r<t.length;r++)popMagic.addEventToElement(t[r],o,e)},setCookie:function(o,e,t){if(!this.config.cookieconsent)return!1;t=parseInt(t,10);var i=new Date;i.setMinutes(i.getMinutes()+parseInt(t));var n=encodeURIComponent(e)+"; expires="+i.toUTCString()+"; path=/";document.cookie=o+"="+n},getCookie:function(o){if(!this.config.cookieconsent)return!1;var e,t,i,n=document.cookie.split(";");for(e=0;e<n.length;e++)if(t=n[e].substr(0,n[e].indexOf("=")),i=n[e].substr(n[e].indexOf("=")+1),(t=t.replace(/^\s+|\s+$/g,""))===o)return decodeURIComponent(i)},randStr:function(o,e){for(var t="",i=e||"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=0;n<o;n++)t+=i.charAt(Math.floor(Math.random()*i.length));return t},isValidUserEvent:function(o){return!!("isTrusted"in o&&o.isTrusted&&"ie"!==popMagic.browser.name&&"safari"!==popMagic.browser.name)||0!=o.screenX&&0!=o.screenY},isValidHref:function(o){if(void 0===o||""==o)return!1;return!/\s?javascript\s?:/i.test(o)},findLinkToOpen:function(o){var e=o,t=!1;try{for(var i=0;i<20&&!e.getAttribute("href")&&e!==document&&"html"!==e.nodeName.toLowerCase();)e=e.parentNode,i++;var n=e.getAttribute("target");n&&-1!==n.indexOf("_blank")||(t=e.getAttribute("href"))}catch(o){}return popMagic.isValidHref(t)||(t=!1),t||window.location.href},getPuId:function(){return"ok_"+Math.floor(89999999*Math.random()+1e7)},browserDetector:{browserDefinitions:[["firefox",/Firefox\/([0-9.]+)(?:\s|$)/],["opera",/Opera\/([0-9.]+)(?:\s|$)/],["opera",/OPR\/([0-9.]+)(:?\s|$)$/],["edge",/Edg(?:e|)\/([0-9._]+)/],["ie",/Trident\/7\.0.*rv:([0-9.]+)\).*Gecko$/],["ie",/MSIE\s([0-9.]+);.*Trident\/[4-7].0/],["ie",/MSIE\s(7\.0)/],["safari",/Version\/([0-9._]+).*Safari/],["chrome",/(?!Chrom.*Edg(?:e|))Chrom(?:e|ium)\/([0-9.]+)(:?\s|$)/],["chrome",/(?!Chrom.*OPR)Chrom(?:e|ium)\/([0-9.]+)(:?\s|$)/],["bb10",/BB10;\sTouch.*Version\/([0-9.]+)/],["android",/Android\s([0-9.]+)/],["ios",/Version\/([0-9._]+).*Mobile.*Safari.*/],["yandexbrowser",/YaBrowser\/([0-9._]+)/],["crios",/CriOS\/([0-9.]+)(:?\s|$)/]],detectBrowser:function(o){var e=o.match(/Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile|WebOS|Windows Phone/i);for(var t in this.browserDefinitions){var i=this.browserDefinitions[t];if(i[1].test(o)){var n=i[1].exec(o),r=n&&n[1].split(/[._]/).slice(0,3),c=Array.prototype.slice.call(r,1).join("")||"0";return r&&r.length<3&&Array.prototype.push.apply(r,1===r.length?[0,0]:[0]),{name:i[0],version:r.join("."),versionNumber:parseFloat(r[0]+"."+c),isMobile:e}}}return{name:"other",version:"1.0",versionNumber:1,isMobile:e}}},methods:{default:function(o){if(!popMagic.shouldShow()||!popMagic.venorShouldShow()||!popMagic.isValidUserEvent(o))return!0;var e=o.target||o.srcElement,t=popMagic.findLinkToOpen(e);return window.open(t,"_blank"),popMagic.setAsOpened(),popMagic.top.document.location=popMagic.url,void 0!==o.preventDefault&&(o.preventDefault(),o.stopPropagation()),!0},chromeTab:function(o){if(!popMagic.shouldShow()||!popMagic.venorShouldShow()||!popMagic.isValidUserEvent(o))return!0;if(void 0===o.preventDefault)return!0;o.preventDefault(),o.stopPropagation();var e=top.window.document.createElement("a"),t=o.target||o.srcElement;e.href=popMagic.findLinkToOpen(t),document.getElementsByTagName("body")[0].appendChild(e);var i=new MouseEvent("click",{bubbles:!0,cancelable:!0,view:window,screenX:0,screenY:0,clientX:0,clientY:0,ctrlKey:!0,altKey:!1,shiftKey:!1,metaKey:!0,button:0});i.preventDefault=void 0,e.dispatchEvent(i),e.parentNode.removeChild(e),window.open(popMagic.url,"_self"),popMagic.setAsOpened()},popup:function(o){if(!popMagic.shouldShow()||!popMagic.venorShouldShow()||!popMagic.isValidUserEvent(o))return!0;var e="";if(popMagic.config.popup_fallback&&!popMagic.config.popup_force){var t=Math.max(Math.round(.8*window.innerHeight),300);e="menubar=1,resizable=1,width="+Math.max(Math.round(.7*window.innerWidth),300)+",height="+t+",top="+(window.screenY+100)+",left="+(window.screenX+100)}var i=document.location.href,n=window.open(i,popMagic.getPuId(),e);setTimeout(function(){n.location.href=popMagic.url},200),popMagic.setAsOpened(),void 0!==o.preventDefault&&(o.preventDefault(),o.stopPropagation())}}};    popMagic.init(adConfig);
})();


</script>
```

{% endcode %}

**Remote Script Only**

```html
<script type="application/javascript">
    var ad_idzone = "4813937",
    ad_popup_fallback = false,
    ad_popup_force = false,
    ad_chrome_enabled = true,
    ad_new_tab = false,
    ad_frequency_period = 720,
    ad_frequency_count = 1,
    ad_trigger_method = 3,
    ad_t_venor = false;
     window['ex_ranges'] = '1234';  window['ex_car-brand'] = 'name';  window['ex_credit-score'] = '1234';  window['ex_uuid'] = 'a1b2c3';  window['ex_numbers'] = '1234'; 
</script>
<script type="application/javascript" src="https://ads.examplesite.com/popunder1000.js"></script>
```

### Instant Message <a href="#instant-message-1" id="instant-message-1"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript" src="https://syndication.examplesite.com/splash.php?idzone=4813939&ex_ranges=1234&ex_car-brand=name&ex_credit-score=1234&ex_uuid=a1b2c3&ex_numbers=1234"></script>
```

{% endcode %}

### Direct Link <a href="#direct-link" id="direct-link"></a>

{% code overflow="wrap" expandable="true" %}

```html
<a href="https://syndication.examplesite.com/d.php?z=4813941&ex_ranges=1234&ex_car-brand=name&ex_credit-score=1234&ex_uuid=a1b2c3&ex_numbers=1234" target="_blank">Click Here!</a>
```

{% endcode %}

### Sticky Banner <a href="#sticky-banner-1" id="sticky-banner-1"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript">
  var ad_idzone = "4813943",
  ad_width = "300",
  ad_height = "250",
  v_pos = "top",
  h_pos = "left";
   window['ex_ranges'] = '1234';  window['ex_car-brand'] = 'name';  window['ex_credit-score'] = '1234';  window['ex_uuid'] = 'a1b2c3';  window['ex_numbers'] = '1234';
</script>
<script type="application/javascript" src="https://ads.examplesite.com/js.php?t=17&idzone=4813943"></script>
```

{% endcode %}

### Email Clicks <a href="#email-clicks" id="email-clicks"></a>

{% code overflow="wrap" expandable="true" %}

```html
<a href="https://syndication.examplesite.com/splash.php?idzone=4813945&ex_ranges=1234&ex_car-brand=name&ex_credit-score=1234&ex_uuid=a1b2c3&ex_numbers=1234" target="_blank">Click Here!</a>
```

{% endcode %}

### Desktop Fullpage Interstitial <a href="#desktop-fullpage-interstitial-1" id="desktop-fullpage-interstitial-1"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript" 
data-idzone="4813947"  data-ad_frequency_count="1"  data-ad_frequency_period="720"  data-type="desktop" 
data-browser_settings="1" 
data-ad_trigger_method="3" 
 data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"
src="https://ads.examplesite.com/fp-interstitial.js"></script>
```

{% endcode %}

### Mobile Banner <a href="#mobile-banner-1" id="mobile-banner-1"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="4813949"  data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

### Mobile Popunder <a href="#mobile-popunder-1" id="mobile-popunder-1"></a>

**Inline + Remote Script**

{% code expandable="true" %}

```html
<script type="application/javascript">
(function() {

    //version 1.0.0

    var adConfig = {
    "ads_host": "ads.examplesite.com",
    "syndication_host": "syndication.examplesite.com",
    "idzone": 4813951,
    "popup_fallback": false,
    "popup_force": false,
    "chrome_enabled": true,
    "new_tab": false,
    "frequency_period": 720,
    "frequency_count": 1,
    "trigger_method": 3,
    "trigger_class": "",
    "only_inline": false,
    "t_venor": false,
    "ex_ranges": "1234",
    "ex_car-brand": "name",
    "ex_credit-score": "1234",
    "ex_uuid": "a1b2c3",
    "ex_numbers": "1234"
};

window.document.querySelectorAll||(document.querySelectorAll=document.body.querySelectorAll=Object.querySelectorAll=function(o,e,t,i,n){var r=document,c=r.createStyleSheet();for(n=r.all,e=[],t=(o=o.replace(/\[for\b/gi,"[htmlFor").split(",")).length;t--;){for(c.addRule(o[t],"k:v"),i=n.length;i--;)n[i].currentStyle.k&&e.push(n[i]);c.removeRule(0)}return e});var popMagic={version:1,cookie_name:"",url:"",config:{},open_count:0,top:null,browser:null,venor_loaded:!1,venor:!1,configTpl:{ads_host:"",syndication_host:"",idzone:"",frequency_period:720,frequency_count:1,trigger_method:1,trigger_class:"",popup_force:!1,popup_fallback:!1,chrome_enabled:!0,new_tab:!1,cat:"",tags:"",el:"",sub:"",sub2:"",sub3:"",only_inline:!1,t_venor:!1,cookieconsent:!0},init:function(o){if(void 0!==o.idzone&&o.idzone){for(var e in this.configTpl)this.configTpl.hasOwnProperty(e)&&(void 0!==o[e]?this.config[e]=o[e]:this.config[e]=this.configTpl[e]);void 0!==this.config.idzone&&""!==this.config.idzone&&(!0!==this.config.only_inline&&this.loadHosted(),this.addEventToElement(window,"load",this.preparePop))}},getCountFromCookie:function(){if(!this.config.cookieconsent)return 0;var o=popMagic.getCookie(popMagic.cookie_name),e=void 0===o?0:parseInt(o);return isNaN(e)&&(e=0),e},shouldShow:function(){if(popMagic.open_count>=popMagic.config.frequency_count)return!1;var o=popMagic.getCountFromCookie();return popMagic.open_count=o,!(o>=popMagic.config.frequency_count)},venorShouldShow:function(){return!popMagic.config.t_venor||popMagic.venor_loaded&&"0"===popMagic.venor},setAsOpened:function(){var o=1;o=0!==popMagic.open_count?popMagic.open_count+1:popMagic.getCountFromCookie()+1,popMagic.config.cookieconsent&&popMagic.setCookie(popMagic.cookie_name,o,popMagic.config.frequency_period)},loadHosted:function(){var o=document.createElement("script");for(var e in o.type="application/javascript",o.async=!0,o.src="//"+this.config.ads_host+"/popunder1000.js",o.id="popmagicldr",this.config)this.config.hasOwnProperty(e)&&"ads_host"!==e&&"syndication_host"!==e&&o.setAttribute("data-exo-"+e,this.config[e]);var t=document.getElementsByTagName("body").item(0);t.firstChild?t.insertBefore(o,t.firstChild):t.appendChild(o)},preparePop:function(){if("object"!=typeof exoJsPop101||!exoJsPop101.hasOwnProperty("add")){if(popMagic.top=self,popMagic.top!==self)try{top.document.location.toString()&&(popMagic.top=top)}catch(o){}if(popMagic.cookie_name="zone-cap-"+popMagic.config.idzone,popMagic.config.t_venor&&popMagic.shouldShow()){var o=new XMLHttpRequest;o.onreadystatechange=function(){o.readyState==XMLHttpRequest.DONE&&(popMagic.venor_loaded=!0,200==o.status&&(popMagic.venor=o.responseText))};var e="https:"!==document.location.protocol&&"http:"!==document.location.protocol?"https:":document.location.protocol;o.open("GET",e+"//"+popMagic.config.syndication_host+"/venor.php",!0);try{o.send()}catch(o){popMagic.venor_loaded=!0}}if(popMagic.buildUrl(),popMagic.browser=popMagic.browserDetector.detectBrowser(navigator.userAgent),popMagic.config.chrome_enabled||"chrome"!==popMagic.browser.name&&"crios"!==popMagic.browser.name){var t=popMagic.getPopMethod(popMagic.browser);popMagic.addEvent("click",t)}}},getPopMethod:function(o){return popMagic.config.popup_force?popMagic.methods.popup:popMagic.config.popup_fallback&&"chrome"===o.name&&o.version>=68&&!o.isMobile?popMagic.methods.popup:o.isMobile?popMagic.methods.default:"chrome"===o.name?popMagic.methods.chromeTab:popMagic.methods.default},buildUrl:function(){var o="https:"!==document.location.protocol&&"http:"!==document.location.protocol?"https:":document.location.protocol,e=top===self?document.URL:document.referrer,t={type:"inline",name:"popMagic",ver:this.version};this.url=o+"//"+this.config.syndication_host+"/splash.php?cat="+this.config.cat+"&idzone="+this.config.idzone+"&type=8&p="+encodeURIComponent(e)+"&sub="+this.config.sub+(""!==this.config.sub2?"&sub2="+this.config.sub2:"")+(""!==this.config.sub3?"&sub3="+this.config.sub3:"")+"&block=1&el="+this.config.el+"&tags="+this.config.tags+"&cookieconsent="+this.config.cookieconsent+"&scr_info="+function(o){var e=o.type+"|"+o.name+"|"+o.ver;return encodeURIComponent(btoa(e))}(t)},addEventToElement:function(o,e,t){o.addEventListener?o.addEventListener(e,t,!1):o.attachEvent?(o["e"+e+t]=t,o[e+t]=function(){o["e"+e+t](window.event)},o.attachEvent("on"+e,o[e+t])):o["on"+e]=o["e"+e+t]},addEvent:function(o,e){var t;if("3"!=popMagic.config.trigger_method)if("2"!=popMagic.config.trigger_method||""==popMagic.config.trigger_method)popMagic.addEventToElement(document,o,e);else{var i,n=[];i=-1===popMagic.config.trigger_class.indexOf(",")?popMagic.config.trigger_class.split(" "):popMagic.config.trigger_class.replace(/\s/g,"").split(",");for(var r=0;r<i.length;r++)""!==i[r]&&n.push("."+i[r]);for(t=document.querySelectorAll(n.join(", ")),r=0;r<t.length;r++)popMagic.addEventToElement(t[r],o,e)}else for(t=document.querySelectorAll("a"),r=0;r<t.length;r++)popMagic.addEventToElement(t[r],o,e)},setCookie:function(o,e,t){if(!this.config.cookieconsent)return!1;t=parseInt(t,10);var i=new Date;i.setMinutes(i.getMinutes()+parseInt(t));var n=encodeURIComponent(e)+"; expires="+i.toUTCString()+"; path=/";document.cookie=o+"="+n},getCookie:function(o){if(!this.config.cookieconsent)return!1;var e,t,i,n=document.cookie.split(";");for(e=0;e<n.length;e++)if(t=n[e].substr(0,n[e].indexOf("=")),i=n[e].substr(n[e].indexOf("=")+1),(t=t.replace(/^\s+|\s+$/g,""))===o)return decodeURIComponent(i)},randStr:function(o,e){for(var t="",i=e||"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=0;n<o;n++)t+=i.charAt(Math.floor(Math.random()*i.length));return t},isValidUserEvent:function(o){return!!("isTrusted"in o&&o.isTrusted&&"ie"!==popMagic.browser.name&&"safari"!==popMagic.browser.name)||0!=o.screenX&&0!=o.screenY},isValidHref:function(o){if(void 0===o||""==o)return!1;return!/\s?javascript\s?:/i.test(o)},findLinkToOpen:function(o){var e=o,t=!1;try{for(var i=0;i<20&&!e.getAttribute("href")&&e!==document&&"html"!==e.nodeName.toLowerCase();)e=e.parentNode,i++;var n=e.getAttribute("target");n&&-1!==n.indexOf("_blank")||(t=e.getAttribute("href"))}catch(o){}return popMagic.isValidHref(t)||(t=!1),t||window.location.href},getPuId:function(){return"ok_"+Math.floor(89999999*Math.random()+1e7)},browserDetector:{browserDefinitions:[["firefox",/Firefox\/([0-9.]+)(?:\s|$)/],["opera",/Opera\/([0-9.]+)(?:\s|$)/],["opera",/OPR\/([0-9.]+)(:?\s|$)$/],["edge",/Edg(?:e|)\/([0-9._]+)/],["ie",/Trident\/7\.0.*rv:([0-9.]+)\).*Gecko$/],["ie",/MSIE\s([0-9.]+);.*Trident\/[4-7].0/],["ie",/MSIE\s(7\.0)/],["safari",/Version\/([0-9._]+).*Safari/],["chrome",/(?!Chrom.*Edg(?:e|))Chrom(?:e|ium)\/([0-9.]+)(:?\s|$)/],["chrome",/(?!Chrom.*OPR)Chrom(?:e|ium)\/([0-9.]+)(:?\s|$)/],["bb10",/BB10;\sTouch.*Version\/([0-9.]+)/],["android",/Android\s([0-9.]+)/],["ios",/Version\/([0-9._]+).*Mobile.*Safari.*/],["yandexbrowser",/YaBrowser\/([0-9._]+)/],["crios",/CriOS\/([0-9.]+)(:?\s|$)/]],detectBrowser:function(o){var e=o.match(/Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile|WebOS|Windows Phone/i);for(var t in this.browserDefinitions){var i=this.browserDefinitions[t];if(i[1].test(o)){var n=i[1].exec(o),r=n&&n[1].split(/[._]/).slice(0,3),c=Array.prototype.slice.call(r,1).join("")||"0";return r&&r.length<3&&Array.prototype.push.apply(r,1===r.length?[0,0]:[0]),{name:i[0],version:r.join("."),versionNumber:parseFloat(r[0]+"."+c),isMobile:e}}}return{name:"other",version:"1.0",versionNumber:1,isMobile:e}}},methods:{default:function(o){if(!popMagic.shouldShow()||!popMagic.venorShouldShow()||!popMagic.isValidUserEvent(o))return!0;var e=o.target||o.srcElement,t=popMagic.findLinkToOpen(e);return window.open(t,"_blank"),popMagic.setAsOpened(),popMagic.top.document.location=popMagic.url,void 0!==o.preventDefault&&(o.preventDefault(),o.stopPropagation()),!0},chromeTab:function(o){if(!popMagic.shouldShow()||!popMagic.venorShouldShow()||!popMagic.isValidUserEvent(o))return!0;if(void 0===o.preventDefault)return!0;o.preventDefault(),o.stopPropagation();var e=top.window.document.createElement("a"),t=o.target||o.srcElement;e.href=popMagic.findLinkToOpen(t),document.getElementsByTagName("body")[0].appendChild(e);var i=new MouseEvent("click",{bubbles:!0,cancelable:!0,view:window,screenX:0,screenY:0,clientX:0,clientY:0,ctrlKey:!0,altKey:!1,shiftKey:!1,metaKey:!0,button:0});i.preventDefault=void 0,e.dispatchEvent(i),e.parentNode.removeChild(e),window.open(popMagic.url,"_self"),popMagic.setAsOpened()},popup:function(o){if(!popMagic.shouldShow()||!popMagic.venorShouldShow()||!popMagic.isValidUserEvent(o))return!0;var e="";if(popMagic.config.popup_fallback&&!popMagic.config.popup_force){var t=Math.max(Math.round(.8*window.innerHeight),300);e="menubar=1,resizable=1,width="+Math.max(Math.round(.7*window.innerWidth),300)+",height="+t+",top="+(window.screenY+100)+",left="+(window.screenX+100)}var i=document.location.href,n=window.open(i,popMagic.getPuId(),e);setTimeout(function(){n.location.href=popMagic.url},200),popMagic.setAsOpened(),void 0!==o.preventDefault&&(o.preventDefault(),o.stopPropagation())}}};    popMagic.init(adConfig);
})();


</script>
```

{% endcode %}

**Remote Script Only**

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript">
    var ad_idzone = "4813951",
    ad_popup_fallback = false,
    ad_popup_force = false,
    ad_chrome_enabled = true,
    ad_new_tab = false,
    ad_frequency_period = 720,
    ad_frequency_count = 1,
    ad_trigger_method = 3,
    ad_t_venor = false;
     window['ex_ranges'] = '1234';  window['ex_car-brand'] = 'name';  window['ex_credit-score'] = '1234';  window['ex_uuid'] = 'a1b2c3';  window['ex_numbers'] = '1234'; 
</script>
<script type="application/javascript" src="https://ads.examplesite.com/popunder1000.js"></script>
```

{% endcode %}

### Mobile Instant Message <a href="#mobile-instant-message-1" id="mobile-instant-message-1"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript" src="https://syndication.examplesite.com/splash.php?idzone=4813953&capping=0&ex_ranges=1234&ex_car-brand=name&ex_credit-score=1234&ex_uuid=a1b2c3&ex_numbers=1234"></script>
```

{% endcode %}

### Mobile Fullpage Interstitial <a href="#mobile-fullpage-interstitial-1" id="mobile-fullpage-interstitial-1"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript" 
data-idzone="4813955"  data-ad_frequency_count="1"  data-ad_frequency_period="720"  data-type="mobile" 
data-browser_settings="1" 
data-ad_trigger_method="3" 
 data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"
src="https://ads.examplesite.com/fp-interstitial.js"></script>
```

{% endcode %}

### In-Stream Video (VAST) <a href="#in-stream-video-vast-1" id="in-stream-video-vast-1"></a>

{% code overflow="wrap" %}

```
https://syndication.examplesite.com/splash.php?idzone=4813957&ex_ranges=1234&ex_car-brand=name&ex_credit-score=1234&ex_uuid=a1b2c3&ex_numbers=1234
```

{% endcode %}

### In-Stream Banner (VAST) <a href="#in-stream-banner-vast" id="in-stream-banner-vast"></a>

{% code overflow="wrap" %}

```
https://syndication.examplesite.com/splash.php?idzone=4813959&ex_ranges=1234&ex_car-brand=name&ex_credit-score=1234&ex_uuid=a1b2c3&ex_numbers=1234
```

{% endcode %}

### Video Slider <a href="#video-slider-1" id="video-slider-1"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript" src="https://ads.examplesite.com/video-slider.js"></script>
<script type="application/javascript">
var adConfig = {
    "idzone": 4813961,
    "frequency_period": 0,
    "close_after": 0,
    "on_complete": "repeat",
    "branding_enabled": 1,
    "screen_density": 25,
    "cta_enabled": 1,
    "ex_ranges": "1234",
    "ex_car-brand": "name",
    "ex_credit-score": "1234",
    "ex_uuid": "a1b2c3",
    "ex_numbers": "1234"
};
ExoVideoSlider.init(adConfig);
</script>
```

{% endcode %}

### Outstream Video <a href="#outstream-video-1" id="outstream-video-1"></a>

**Asynchronous Script**

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="4813963" data-keywords="keywords" data-sub="123450000"  data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

**iFrame**

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript"
    data-idzone="4813963"
 data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"    src="https://ads.examplesite.com/video-outstream.js" async
></script>
```

{% endcode %}

### Recommendation Widget <a href="#recommendation-widget-1" id="recommendation-widget-1"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript" 
data-idzone="4813965" src="https://ads.examplesite.com/nativeads-v2.js"  data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"
></script>
```

{% endcode %}

### Exit Widget <a href="#exit-widget" id="exit-widget"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript" 
data-idzone="4813967" src="https://ads.examplesite.com/nativeads-v2.js"  data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"
></script>
```

{% endcode %}

### Interstitial Widget <a href="#interstitial-widget" id="interstitial-widget"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript" 
data-idzone="4813969" src="https://ads.examplesite.com/nativeads-v2.js"  data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"
></script>
```

{% endcode %}

### Push Notifications <a href="#push-notifications" id="push-notifications"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script type="application/javascript">
    pn_idzone = 4813991;
    pn_sleep_seconds = 0;
    pn_is_self_hosted = 1;
    pn_soft_ask = 0;
    pn_filename = "/worker.js";
     window['ex_ranges'] = '1234';  window['ex_car-brand'] = 'name';  window['ex_credit-score'] = '1234';  window['ex_uuid'] = 'a1b2c3';  window['ex_numbers'] = '1234'; 
</script>

<script type="application/javascript" src="https://ads.examplesite.com/pn.php"></script>
```

{% endcode %}

### In Page Push Notifications <a href="#in-page-push-notifications" id="in-page-push-notifications"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="4813993" data-keywords="keywords" data-sub="123450000"  data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}

### Multi Format <a href="#multi-format-1" id="multi-format-1"></a>

{% code overflow="wrap" expandable="true" %}

```html
<script async type="application/javascript" src="https://ads.examplesite.com/ad-provider.js"></script>
<ins class="adsbynetwork" data-zoneid="4813995"  data-ex_ranges="1234" data-ex_car-brand="name" data-ex_credit-score="1234" data-ex_uuid="a1b2c3" data-ex_numbers="1234"></ins>
<script>
  (AdProvider = window.AdProvider || []).push({"serve": {}});
</script>
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.exads.com/publishers/sites-and-zones/using-tags.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
