Reputation: 396
I was reading Simo's blog trying to identify a way to track non-js-enabled hits. A solution is given at the comments by a user with the moniker Duncan. He suggests creating a new custom js variable in Google Tag Manager:
function(){
return true;
}
Then the commentator suggests creating `a rule which matches on 'Does not equal: true'. I do not understand this bit. What does the commentator mean by 'a rule' and how do I realize this? Can somebody guide me.
Upvotes: 0
Views: 165
Reputation: 829
Upvotes: 1
Reputation: 32760
This is a Javascript variable. If javascript is disabled it will not be executed. Therefore the value is never equal to true in a browser that does not execute javascript.
Since there is a supported way of passing in variables (i.e. appending them to the url of the noscript iframe) I don't think you need to use such a workaround, funny as it might be.
Upvotes: 0