Advertisement
orksnork

Untitled

Oct 31st, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.42 KB | None | 0 0
  1. $( "#post-box a[href^='http']" ).each(function() {
  2.     if ($("#post-box a[href$='.pdf']")){
  3.       $( this ).on( "click", "ga('send','event','" + pageName + ":Body:Paragraph','Click','Download:PDF:" + $(this).text() + "');" );
  4.     }else{
  5.       $( this ).on( "click", "ga('send','event','" + pageName + ":Body:Paragraph','Click','Link:External:" + $(this).text() + " -- " + $(this).attr( "href" ) + "');" );
  6.     }
  7.  
  8.   });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement