最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Get Google Analytics ID with Javascript - Stack Overflow

programmeradmin1浏览0评论

I am trying to extract the Google analytics ID from a html document.

I found the following function:

function get_UA() {

txt = document.getElementById('scripttag').value;

var matches = txt.match(/(UA-[\d-]+)/);

if (matches[1]) {

    alert(matches[1]);

}

}

But im getting this error:

TypeError: 'null' is not an object (evaluating 'document.getElementById('scripttag').value')

Any ideas?

I am trying to extract the Google analytics ID from a html document.

I found the following function:

function get_UA() {

txt = document.getElementById('scripttag').value;

var matches = txt.match(/(UA-[\d-]+)/);

if (matches[1]) {

    alert(matches[1]);

}

}

But im getting this error:

TypeError: 'null' is not an object (evaluating 'document.getElementById('scripttag').value')

Any ideas?

Share Improve this question asked Feb 8, 2013 at 8:53 AlosyiusAlosyius 9,15126 gold badges78 silver badges121 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 6

Can you access the _gaq variable? If you can, and the page is using asynchronous tracking...

var accountId = _gaq._getAsyncTracker()._getAccount();

In April 2017, this works:

ga.getAll()[0].b.data.values[':trackingId']

ga.getAll()[0].get('trackingId')

if you already have a tracker you can obtain it with

tracker.get('trackingId')

Carefull, Dont forget google analytics best practices

Don't use ga object methods outside a readyCallback as the methods may not be available yet.

发布评论

评论列表(0)

  1. 暂无评论