Urgent issues? Contact us directly at help@monitus.com or check Monitus Tools Updates.
Monitus Tools Forum  


urchinTracker's argument - 2006/05/22 17:57 Google Analytics allows you to track page views as if they had happened on another page. Using Google's code, you achieve this by calling urchinTracker with the page you want to link to the current page view. So instead of placing a simple
    urchinTracker();
line on your page, you would place something like
    urchinTracker("/your/simulated/page/here.html");


With Monitus.net's Google Analytics connector, in an effort to keep installation as simple as possible, you never call GA code directly - like the urchinTracker call... So what do you do if you want to use our tool and link the page view to another page?

Simple... Instead of the usual code you put in your page:
    <script type="text/javascript">monitus_init(...);</script>

You would instead use:
    <script type="text/javascript">
    var monitus_urchinPage = "/your/simulated/page/here.html";
    monitus_init(...);
    </script>


You can find more information about urchinTracker on Google Analytics.

Hope this helps!

Post edited by: MacPrawn, at: 2006/05/22 18:11
  | | The administrator has disabled public write access.