MediaWiki:Common.js: Difference between revisions

From Wikisum
No edit summary
No edit summary
Line 4: Line 4:
     document.head.appendChild(script);
     document.head.appendChild(script);
}
}
/* Google Analytics v3 */
inject("https://www.google-analytics.com/analytics.js");
window.ga = function () {
    (ga.q = ga.q || []).push(arguments);
};
ga.l = +new Date();
ga('create', 'UA-253409-3', 'auto');
ga('send', 'pageview');





Revision as of 06:21, 9 March 2023

function inject(url) {
    const script = document.createElement("script");
    script.src = url;
    document.head.appendChild(script);
}


/* Google Analytics v4 */
inject('https://www.googletagmanager.com/gtag/js?id=G-JKLRL9CMTE');

window.dataLayer = window.dataLayer || [];

function gtag() {
    dataLayer.push(arguments);
}

gtag('js', new Date());
gtag('config', 'G-JKLRL9CMTE');