Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <script src="https://secure-ds.serving-sys.com/BurstingScript/EBLoader.js"></script>
  2.  
  3. function initEB() {
  4. if (!EB.isInitialized()) {
  5. EB.addEventListener(EBG.EventName.EB_INITIALIZED, startAd);
  6. } else {
  7. startAd();
  8. }
  9. }
  10.  
  11. function addEventListeners() {
  12. document.getElementById("theborder").addEventListener("click", clickthrough);
  13. }
  14.  
  15. function clickthrough() {
  16. EB.clickthrough();
  17. }
  18.  
  19. window.addEventListener("load", initEB);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement