Detect if Google Analytics and Developer Media are loaded properly or not
This is for my own future reference. I need a way to check if Digital Media and Google Analytics JavaScript objects are loaded properly. There are browser's extensions such as Ghostery and Disconnect that will interfere or surrogate JavaScript objects and nullify the analytics behind the ads.
Here you go!
<script type="text/javascript">
window.addEventListener('load', function()
{
if(typeof DMAds==='undefined')
{
console.log('Developer Media is not loaded');
}
else
{
console.log('Developer Media is loaded');
}
if(window._gaq && (typeof window._gaq.I!== 'undefined'))
{
console.log('Classic Google Analytics is loaded');
}
else
{
console.log('Classic Google Analytics is not loaded');
}
console.log(window._gaq.I.prefix);
}, false);
</script>
If the browser viewing the page with above JavaScript codes equips with Ghostery or Disconnect. You will see Developer Media is not loaded
and Classic Google Analytics is not loaded
under your browser's Console
tab.
References:
https://marthijnhoiting.com/detect-if-someone-is-blocking-google-analytics-or-google-tag-manager/
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.4k Golang : Get YouTube playlist
+8k Findstr command the Grep equivalent for Windows
+31.3k Golang : bufio.NewReader.ReadLine to read file line by line
+23.1k Golang : Randomly pick an item from a slice/array example
+6.2k Apt-get to install and uninstall Golang
+7.4k Golang : Convert source code to assembly language
+7.9k Golang : Gomobile init produce "iphoneos" cannot be located error
+14.3k Golang : How to shuffle elements in array or slice?
+10.5k Android Studio : Simple input textbox and intercept key example
+5.1k Python : Create Whois client or function example
+12.6k Golang : Drop cookie to visitor's browser and http.SetCookie() example
+7.3k Golang : Create zip/ePub file without compression(use Store algorithm)