-1

How google will track Referral Path from site1 to site2 without Google Analytics URL Builder (UTM)?

Can any one answer for my question?

raghu
  • 317
  • 3
  • 6
  • 17

1 Answers1

1

You can use plain javascript document.referrer

if ('referrer' in document)
            {
                if (document.referrer != '')
                    ref = encodeURIComponent(document.referrer);

            }
arpad
  • 541
  • 5
  • 10