What is the section of Javascript ? - wwOpenInstalled - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T22:53:49Zhttp://stackoverflow.com/feeds/question/1081449http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081449/what-is-the-section-of-javascript-wwopeninstalled1What is the section of Javascript ? - wwOpenInstalledJJ2009-07-04T03:52:49Z2009-07-04T04:07:21Z
<p>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:</p>
<pre><code><script language="javascript"><!--
var wwOpenInstalled;
if (wwOpenInstalled || parent.wwOpenInstalled) {
if (window.Event) {
document.captureEvents (Event.MOUSEUP);
}
document.onmouseup = (parent.wwOpenInstalled) ? parent.wwOnMouseUp : wwOnMouseUp;
}
//--></script>
</code></pre>
<p>This is a very simple question. Why is it here and what does it do ?</p>
http://stackoverflow.com/questions/1081449/what-is-the-section-of-javascript-wwopeninstalled/1081455#10814551Answer by Stobor for What is the section of Javascript ? - wwOpenInstalledStobor2009-07-04T04:00:39Z2009-07-04T04:00:39Z<p>Do you use WebWasher, or McAfee Web Protection? That looks like code inserted by webWasher to trap links and protect against viruses or trojans.</p>
http://stackoverflow.com/questions/1081449/what-is-the-section-of-javascript-wwopeninstalled/1081462#10814620Answer by CMS for What is the section of Javascript ? - wwOpenInstalledCMS2009-07-04T04:06:26Z2009-07-04T04:06:26Z<p>By doing a <a href="http://www.google.com/search?q=parent+wwOpenInstalled+MOUSEUP" rel="nofollow">quick google search</a> 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.</p>
<p>But by reading the code, seems that is pretty outdated, the <a href="http://developer.mozilla.org/En/DOM/window.captureEvents" rel="nofollow">captureEvents</a> function is now obsolete.</p>
<p>For website traffic analysis I highly recommend you <a href="http://www.google.com/analytics/" rel="nofollow">Google Analytics</a>.</p>