MediaWiki:Common.js: Difference between revisions

From Posstack.com Documentations
(Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: →‎This function will load script and call the callback once the script has loaded: function loadScriptAsync(scriptSrc, callback) { if (typeof callback !== 'function') { throw new Error('Not a valid callback for async script load'); } var script = document.createElement('script'); script.onload = callback; script.src = scriptSrc; document.head.appendChild(script); }...")
 
No edit summary
Line 18: Line 18:
      
      
       gtag('config', 'G-SSEF6DPJ6K');
       gtag('config', 'G-SSEF6DPJ6K');
})
});
 
(function(){
window.$crisp=[];window.CRISP_WEBSITE_ID="0d1e4ff1-6ade-4b51-b39b-1668cb18b27c";(function(){ d=document;s=d.createElement("script"); s.src="https://client.crisp.chat/l.js"; s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();
 
})();

Revision as of 06:22, 30 January 2023

/* Any JavaScript here will be loaded for all users on every page load. */
/*This function will load script and call the callback once the script has loaded*/
function loadScriptAsync(scriptSrc, callback) {
    if (typeof callback !== 'function') {
        throw new Error('Not a valid callback for async script load');
    }
    var script = document.createElement('script');
    script.onload = callback;
    script.src = scriptSrc;
    document.head.appendChild(script);
}

/* This is the part where you call the above defined function and "call back" your code which gets executed after the script has loaded */
loadScriptAsync('https://www.googletagmanager.com/gtag/js?id=G-SSEF6DPJ6K', function(){
    window.dataLayer = window.dataLayer || [];
      function gtag(){dataLayer.push(arguments);}
      gtag('js', new Date());
    
      gtag('config', 'G-SSEF6DPJ6K');
});

(function(){
	
window.$crisp=[];window.CRISP_WEBSITE_ID="0d1e4ff1-6ade-4b51-b39b-1668cb18b27c";(function(){ d=document;s=d.createElement("script"); s.src="https://client.crisp.chat/l.js"; s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();

})();