jquery.dfp.js
jquery.dfp.js copied to clipboard
The ads are not working with the material design javascript
Hey guys,
I'm using material design lite for my website and the ads are not working when the mdl-js class pops-up in the html tag.
I know that the ads are working because when I remove mdl the ads work again. Plus during the time that the mdl javascript is not loading I can see the ads, but then when mdl loads the js the ads just go to an about_blank page. This is how I have set up the scripts in the body tag of course.
<script src="./bower_components/jquery/dist/jquery.js"></script>
<!-- MDL JS-->
<script src="/landing/styles/sass/src/mdlComponentHandler.js"></script>
<script src="/landing/styles/sass/src/button/button.js"></script>
<script src="/landing/styles/sass/src/checkbox/checkbox.js"></script>
<script src="/landing/styles/sass/src/icon-toggle/icon-toggle.js"></script>
<script src="/landing/styles/sass/src/menu/menu.js"></script>
<script src="/landing/styles/sass/src/progress/progress.js"></script>
<script src="/landing/styles/sass/src/radio/radio.js"></script>
<script src="/landing/styles/sass/src/slider/slider.js"></script>
<script src="/landing/styles/sass/src/spinner/spinner.js"></script>
<script src="/landing/styles/sass/src/switch/switch.js"></script>
<script src="/landing/styles/sass/src/tabs/tabs.js"></script>
<script src="/landing/styles/sass/src/textfield/textfield.js"></script>
<script src="/landing/styles/sass/src/tooltip/tooltip.js"></script>
<script src="/landing/styles/sass/src/layout/layout.js"></script>
<script src="/landing/styles/sass/src/data-table/data-table.js"></script>
<script src="/landing/styles/sass/src/ripple/ripple.js"></script>
<!-- WFB JS-->
<script src="./bower_components/jquery.dfp.js/jquery.dfp.js"></script>
<!-- fu-scripts JS-->
<script src="/landing/scripts/fu-ripple-effect.js"></script>
<script src="/landing/scripts/dfp-account.js"></script>
<script src="/landing/scripts/main.js"></script>
I'm using this code for the dfp-account.js file
(function ($, window) {
"use strict";
$.getScript("./bower_components/jquery.dfp.js/jquery.dfp.js", function () {
$.dfp({
// Set the DFP ID
'dfpID': 'xxxxxxx',
enableSingleRequest: false
});
});
})(window.jQuery, window);