vote up 1 vote down star

Ok so I start coding websites (yes I know I am almost 15 years late :0) and in many of the sites I see the following javascript:

<script language="javascript"><!--

var wwOpenInstalled;
if (wwOpenInstalled || parent.wwOpenInstalled) {
    if (window.Event) {
    	document.captureEvents (Event.MOUSEUP);
    }
    document.onmouseup = (parent.wwOpenInstalled) ? parent.wwOnMouseUp : wwOnMouseUp;
}
//--></script>

This is a very simple question. Why is it here and what does it do ?

flag

2 Answers

vote up 1 vote down check

Do you use WebWasher, or McAfee Web Protection? That looks like code inserted by webWasher to trap links and protect against viruses or trojans.

link|flag
I am in a corporate office. You think WebWasher is injecting this ? – JJ Jul 4 at 20:23
@JJ: Yeah, that or one of it's descendants like McAfee.... – Stobor Jul 7 at 3:07
vote up 0 vote down

By doing a quick google search on some of the keywords of the code, seems that this code is injected from a script of StatCounter, a service to track and get statistics of the visitors on your page.

But by reading the code, seems that is pretty outdated, the captureEvents function is now obsolete.

For website traffic analysis I highly recommend you Google Analytics.

link|flag
1  
If you read those pages, you'll see that it had nothing to do with statcounter... Someone complained to the statcounter folks, blaming them, that's all. forum.statcounter.com/vb/archive/… – Stobor Jul 4 at 4:32

Your Answer

Get an OpenID
or

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