vote up 3 vote down star

Is there an easy way to find out what percentage of visitors to a webpage are not using javascript?

flag

76% accept rate

2 Answers

vote up 4 vote down check

Most of the more modern analytic programs will do this for you but ... you can use the tag and a 1x1 gif and count the hits in the log files.

<noscript>
<img src="http://www.mysite.com/assets/images/no_javascript_1x1.gif" alt="" width="1" height="1" border="0" />
</noscript>

or for secure pages:

<noscript>
  <img src="https://www.mysite.com/assets/images/no_javascript_1x1.gif" alt="no javascript marker" width="1" height="1" border="0" />
</noscript

If this was a high use image you could have an issue with proxy caching but suspect there are so few people with no javascript , this will not be an issue.

Mike

link|flag
+1 for "don't reinvent the wheel" – Piskvor Oct 12 at 9:09
1  
Which free modern analytic programs? I know that google analytics doesn't because it is javascript based. Is there one you have in mind? – chris Oct 12 at 10:18
1  
awstats ( log parser not only Javascript based ) and Piwik ( Javascript based ) – Ghommey Oct 13 at 6:44
1  
You will need access to your log files. I was thinking of one of these: * en.wikipedia.org/wiki/…* But all they do is something similar - make reference to an image in a noscript tag. If its a "one off" you can get a long way with your log files and grep. I have also been known to use Perl for more difficult questions or answers that I need more than once. – MikeyB_Leeds 9 mins ago – MikeyB_Leeds Oct 13 at 10:15
vote up 9 vote down

If you want to do it yourself try this:

<noscript><img src="countNoJS.php" style="display:none" /></noscript>
<script>document.write('<img src="countJS.php" style="display:none" />');</script>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.