Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.78 KB | None | 0 0
  1. // This is pulled directly out of the AD that we currently have
  2.  
  3. <p style="text-align: center;">
  4.   <a href="about-us/advertising">
  5.     <img src="albumcovers/July10/AdvertiseHere.PNG" border="0" width="250" height="250" />
  6.   </a>
  7. </p>
  8.  
  9. // using the above as a template, this is the code that will make use of mixpanel
  10. // Node the 'Advertisement Tab' <-- this will be the group
  11. // and the 'Advertise Here' <-- this is the section of the above group
  12. <p style="text-align: center;">
  13.   <a href="javascript:void(0);"
  14.    onclick="mpmetrics.track('Advertisement Tab', {
  15.      'tab': 'Advertise Here'
  16.    }, function() {
  17.      window.location = '/about-us/advertising';
  18.    });">
  19.   <img src="albumcovers/July10/AdvertiseHere.PNG" border="0" width="250" height="250" />
  20.    </a>
  21. </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement