Skip to main content
deleted 29 characters in body
Source Link
Jean-François Fabre
  • 140.9k
  • 24
  • 179
  • 246

You can add anchor tags. I use this on my site http://www.piano-chords.net/ so that I can track with Google Analytics what people are visiting on the page.

I just add an anchor tag and then the part of the page I want to track:

var trackCode = "/#" + urlencode($("myDiv").text());
window.location.href = "http://www.piano-chords.net" + trackCode;
pageTracker._trackPageview(trackCode);

You can add anchor tags. I use this on my site http://www.piano-chords.net/ so that I can track with Google Analytics what people are visiting on the page.

I just add an anchor tag and then the part of the page I want to track:

var trackCode = "/#" + urlencode($("myDiv").text());
window.location.href = "http://www.piano-chords.net" + trackCode;
pageTracker._trackPageview(trackCode);

You can add anchor tags. I use this on my site so that I can track with Google Analytics what people are visiting on the page.

I just add an anchor tag and then the part of the page I want to track:

var trackCode = "/#" + urlencode($("myDiv").text());
window.location.href = "http://www.piano-chords.net" + trackCode;
pageTracker._trackPageview(trackCode);
Active reading [<http://en.wikipedia.org/wiki/Google_Analytics>].
Source Link
Peter Mortensen
  • 31.2k
  • 22
  • 111
  • 134

You can add anchor tags. II use this on my site http://www.piano-chords.net/ so that I can track with google analyticsGoogle Analytics what people are visiting on the page. I

I just add an anchor tag and then the part of the page I want to track.:

var trackCode = "/#" + urlencode($("myDiv").text());
window.location.href = "http://www.piano-chords.net" + trackCode;
pageTracker._trackPageview(trackCode);

You can add anchor tags. I use this on my site http://www.piano-chords.net/ so that I can track with google analytics what people are visiting on the page. I just add an anchor tag and then the part of the page I want to track.

var trackCode = "/#" + urlencode($("myDiv").text());
window.location.href = "http://www.piano-chords.net" + trackCode;
pageTracker._trackPageview(trackCode);

You can add anchor tags. I use this on my site http://www.piano-chords.net/ so that I can track with Google Analytics what people are visiting on the page.

I just add an anchor tag and then the part of the page I want to track:

var trackCode = "/#" + urlencode($("myDiv").text());
window.location.href = "http://www.piano-chords.net" + trackCode;
pageTracker._trackPageview(trackCode);
formatting
Source Link
sth
  • 231.5k
  • 56
  • 289
  • 370

You can add anchor tags. I use this on my site http://www.piano-chords.net/ so that I can track with google analytics what people are visiting on the page. I just add an anchor tag and then the part of the page I want to track.


var trackCode = "/#" + urlencode($("myDiv").text());

window.location.href = "http://www.piano-chords.net" + trackCode;

pageTracker._trackPageview(trackCode);


var trackCode = "/#" + urlencode($("myDiv").text());
window.location.href = "http://www.piano-chords.net" + trackCode;
pageTracker._trackPageview(trackCode);

You can add anchor tags. I use this on my site http://www.piano-chords.net/ so that I can track with google analytics what people are visiting on the page. I just add an anchor tag and then the part of the page I want to track.


var trackCode = "/#" + urlencode($("myDiv").text());

window.location.href = "http://www.piano-chords.net" + trackCode;

pageTracker._trackPageview(trackCode);


You can add anchor tags. I use this on my site http://www.piano-chords.net/ so that I can track with google analytics what people are visiting on the page. I just add an anchor tag and then the part of the page I want to track.

var trackCode = "/#" + urlencode($("myDiv").text());
window.location.href = "http://www.piano-chords.net" + trackCode;
pageTracker._trackPageview(trackCode);
Source Link
Nate
  • 127
  • 1
  • 2
Loading