Skip to content

crccheck/jquery.dfp.js

 
 

Repository files navigation

jQuery DFP - A jQuery implementation for Google DFP

Build Status

This script is a drop in solution for getting Double Click for Publishers (DFP) by Google working on your page. By including this script on your page and then initialising it in the ways described below you should find it very easy to get DFP working.

Do not include any of the generated DFP script tags from the DFP admin on your page, this script replaces them.

This script also works with Zepto.js and Tire.js

Demo / Ad unit tester

You can use this page to test your DFP ads using the jquery.dfp.js script. There is some debug code included to help debug the ad delivery.

You can also use the Google Console to debug your ad units. This is done by by adding a "google_console=1" or "google_debug=1" to the url, and toggling the console by pressing CTRL + F10.

Setup

You can add ad units to your page in any location that you would like to display an ad.

By default this script will look for ad units with a class of adunit but you can of course use jQuery selectors as well.

The minimum information required for an ad unit to function is having the ad unit specified. To do this you can use the id parameter of the element, for example:

<div class="adunit" id="Ad_unit_id"></div>

In the example above the ID of the div element will be used to look up a corresponding ad unit in DFP and the dimensions of the adunit will be set to the same dimensions of the div which could be defined in your CSS.

You can optionally specify the adunit name and dimensions in the following way:

<div class="adunit" data-adunit="Ad_unit_id" data-dimensions="393x176"></div>

This method can be useful for including multiple copies of an ad unit with the same name which when part of a DFP placement will then pull in as many different creatives as possible.

You can also specify multiple dimensions sets:

<div class="adunit" data-adunit="Ad_unit_id" data-dimensions="393x176,450x500"></div>

Also you can optionally specify custom targeting on a per ad unit basis in the following way:

<div class="adunit" data-adunit="Ad_unit_id" data-dimensions="393x176" data-targeting='{"city_id":"1"}'></div>

Also you can optionally specify custom exclusion category on a per ad unit basis in the following way:

<div class="adunit" data-adunit="Ad_unit_id" data-dimensions="393x176" data-exclusions="firstcategory,secondcategory"></div>

To create an out of page ad unit set the data-outofpage property on the ad unit. Dimensions are not required for out of page ad units.

<div class="adunit" data-adunit="Ad_unit_id" data-outofpage="true"></div>

Usage

Calling the script:

<html>
<head>
    <title>DFP TEST</title>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
    <script src="jquery.dfp.min.js"></script>
</head>
<body>

    <div class="adunit" id="Middle_Feature" data-dimensions="393x176" data-targeting='{"city_id":"1"}'></div>

    <script>

        $.dfp({
            dfpID: 'xxxxxxxxx'
        });

    </script>

</body>
</html>

Using a bootstrap file (take a look at example-bootstrap.js):

<html>
<head>
    <title>DFP TEST</title>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
    <script src="example-bootstrap.js"></script>
</head>
<body>

    <div class="adunit" id="Middle_Feature" data-dimensions="393x176" data-targeting='{"city_id":"1"}'></div>

</body>
</html>

You can init the script in the following ways:

$.dfp('xxxxxxxxx');
$.dfp({
    dfpID:'xxxxxxxxx'
});
$('selector').dfp({
    dfpID:'xxxxxxxxx'
});
$('selector').dfp({
    dfpID:'xxxxxxxxx',
    setCategoryExclusion: 'firstcategory, secondcategory'
});
$('selector').dfp({
    dfpID:'xxxxxxxxx',
    setLocation: { latitude: 34, longitude: -45.12, precision: 1000 }
});
$('selector').dfp({
    dfpID:'xxxxxxxxx',
    sizeMapping: {
        'my-default': [
        	{browser: [1024, 768], ad_sizes: [980, 185]},
	        {browser: [ 980, 600], ad_sizes: [[728, 90], [640, 480]]}
	        {browser: [   0,   0], ad_sizes: [88, 31]}
        ],
    }
});

Available Options

<tr>
    <td>enableSingleRequest</td>
    <td>This boolean sets whether the page ads are fetched with a single request or not, you will need to set this to false it you want to call $.dfp() more than once, typically you would do this if you are loading ad units into the page after the initial load.</td>
</tr>
<tr>
    <td>collapseEmptyDivs</td>
    <td>This can be set to true, false or 'original'. If its set to true the divs will be set to display:none if no line item is found. False means that the ad unit div will stay visible no matter what. Setting this to 'original' (the default option) means that the ad unit div will be hidden if no line items are found UNLESS there is some existing content inside the ad unit div tags. This allows you to have fall back content in the ad unit in the event that no ads are found.</td>
</tr>
<tr>
    <td>refreshExisting</td>
    <td>This boolean controls what happens when dfp is called multiple times on ad units. By default it is set to true which means that if an already initialised ad is initialised again it will instead be refreshed.</td>
</tr>
<tr>
    <td>sizeMapping</td>
    <td>Defines named size maps that can be used with in combination with the data-size-mapping attribute to enable responsive ad sizing (https://support.google.com/dfp_premium/answer/3423562?hl=en).</td>
</tr>
<tr>
    <td>afterEachAdLoaded</td>
    <td>This is a call back function, see below for more information.</td>
</tr>
<tr>
    <td>afterAllAdsLoaded</td>
    <td>This is a call back function, see below for more information.</td>
</tr>
<tr>
    <td>beforeEachAdLoaded</td>
    <td>This is a call back function, see below for more information.</td>
</tr>
Option Description
dfpID This string is your unique DFP account ID.
setTargeting This object is where you set custom targeting key value pairs. Also see the Default Targeting options that are set further down the page.
setUrlTargeting This boolean specifies whether the targeting should include information found in the url of the current page. The default value of this option is true.
setCategoryExclusion This comma separated list sets category exclusions globally (page level).
setLocation This object sets geolocalization. String values are not valid.

Callbacks

This script provides two callbacks which you can use to make working with DFP a little easier.

Callback Parameters Description
afterEachAdLoaded(adUnit)
  • adUnit - jQuery Object - the jQuery object
This is called after each ad unit has finished rendering.
afterAllAdsLoaded(adUnits)
  • adUnits - jQuery Object - the jQuery object containing all selected ad units
This is called after all ad units have finished rendering.
alterAdUnitName(adUnitName, adUnit)
  • adUnitName - String - the default ad unit name
  • adUnit - jQuery Object - the jQuery object
Return the modified or overrided ad unit name. This function is called once per ad unit.
beforeEachAdLoaded(adUnit)
  • adUnit - jQuery Object - the jQuery object
This is called before each ad unit has started rendering.

Please see the example-bootstrap.js file for an example of how to use these.

Default URL Targeting

The following targeting options are built into this script and should be setup in your DFP account (within Inventory/Custom Targeting) to make full use of them. These targeting-parameters can be turned on/off with the setUrlTargeting option.

Beware: The Targeting string has a 40 character limit!

Key Description
Domain This allows you to target different domains, for example you could test your ads on your staging environment before pushing them live by specifying a domain of staging.yourdomain.com within DFP, this script will take care of the rest.
inURL This allows you to target URLs containing the segment you specify in DFP, for example you could set inURL to '/page1' on the targeting options of the DFP line item and it would then allow ads to show on any page that contains /page1 in its URL. e.g. http://www.yourdomain.com/page1 or http://www.yourdomain.com/page1/segment2 or http://www.yourdomain.com/section/page1
URLIs This allows you to target the exact URL of the users browser, for example if you set URLIs to '/page1' on the targeting options of the DFP line item it would match http://www.yourdomain.com/page1 only and not http://www.yourdomain.com/page1/segment2.
Query This allows you to target the query parameters of a page. For example if the URL was http://www.yourdomain.com/page1?param1=value1 you could target it with a DFP ad by specifying a Query targeting string of param1:value1

One common issue that you may run into with using the above targeting is that URL paths that you might want to target can easily be above the 40 character limit. To get around this you can specify multiple inURL rules. For example if you are wanting to target a URL like http://www.yourdomain.com/this/url/is/much/too/long/to/fit-into/the-dfp-targeting-value-box you can break it up into multiple inURL AND rules.

URL Targeting

Contributing

Any and all contributions will be greatly appreciated.

If you wish to you can use Grunt to enable a smooth contributing and build process.

Install Node.js by running sudo apt-get install nodejs

Install Grunt using: npm install -g grunt-cli

Once installed run npm install from inside the cloned repo directory.

You should now be able to make your changes to jquery.dfp.js and once you are finished simply run grunt if there are no errors then you can commit your changes and make a pull request and your feature/bug fix will be merged as soon as possible.

Please feel free to write tests which will test your new code, Travis CI is used to test the code automatically once a pull request is generated.

Thanks a lot to these contributors:

About

A jQuery implementation for Google DoubleClick for Publishers (DFP)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 95.7%
  • CSS 4.3%