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
+24.2k Golang : Upload to S3 with official aws-sdk-go package
+17.8k Golang : Parse date string and convert to dd-mm-yyyy format
+5.5k Golang : PGX CopyFrom to insert rows into Postgres database
+21.6k Curl usage examples with Golang
+8.4k Golang : Number guessing game with user input verification example
+29.5k Golang : JQuery AJAX post data to server and send data back to client example
+14.7k Golang : Missing Bazaar command
+16.6k Golang : Convert slice to array
+16.5k Golang : Find out mime type from bytes in buffer
+45.2k Golang : Use wildcard patterns with filepath.Glob() example
+8.3k Golang : How To Use Panic and Recover