What is the section of Javascript ? - wwOpenInstalled - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:53:49Z http://stackoverflow.com/feeds/question/1081449 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081449/what-is-the-section-of-javascript-wwopeninstalled 1 What is the section of Javascript ? - wwOpenInstalled JJ 2009-07-04T03:52:49Z 2009-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>&lt;script language="javascript"&gt;&lt;!-- var wwOpenInstalled; if (wwOpenInstalled || parent.wwOpenInstalled) { if (window.Event) { document.captureEvents (Event.MOUSEUP); } document.onmouseup = (parent.wwOpenInstalled) ? parent.wwOnMouseUp : wwOnMouseUp; } //--&gt;&lt;/script&gt; </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#1081455 1 Answer by Stobor for What is the section of Javascript ? - wwOpenInstalled Stobor 2009-07-04T04:00:39Z 2009-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#1081462 0 Answer by CMS for What is the section of Javascript ? - wwOpenInstalled CMS 2009-07-04T04:06:26Z 2009-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>