Help & Advanced Code Settings

1. Code Location

2. Link Tracking

3. Form Tracking

4. User Variables


1. Code Location

Code needs to be placed exactly before closing </body> tag because ClickAider has to analyze document DOM tree in order to be able to track clicks on advertisers and links. If ClickAider code is placed in the different location, when script is Loaded DOM tree may not yet be fully available and so ClickAider will miss some of the advertisements.

2. Link Tracking

Besides tracking Advertisement ClickAider can also track clicks on the ordinary links so you can see how visitors navigate between the pages or where do they go from your site.

By default ClickAider will track Links which means links which you specially tagged for tracking with clickaider:

Example:

<a href="http://www.example.com" clickaider_track_me="1">Link to example</a> or <a href="http://www.example.com" class="clickaider_track_me">Link to example</a>

If you select to track External links ClickAider will track links which are directed towards pages on different domains. This means it has to be fully qualified link rather than related link and domains has to be different. "www" prefix is removed both from source and target domains before doing this comparison. So clickaider.com -> clickaider.com will be considered internal link, clickaider.com -> beta.clickaider.com is considered external link clickaider.com -> www.google.com is also considered external link.

Selecting All links for tracking will simply track clicks on all links.

3. Form Tracking

ClickAider also can track how forms are being filled on your web site.

You can select to track only marked forms or all forms on web site.

To select form for tracking by ClickAider you can mark it the following way:

<form action="http://www.example.com" clickaider_track_me="1"></form> or <form action="http://www.example.com" class="clickaider_track_me"></form>

To protect your privacy by default ClickAider will not track content of submitted fields, however you have an option to track which form fields need to be tracked by using following code:

<form action="http://www.example.cmm"> <input clickaider_track_me="1" type="text" name="query"> </form> or <form action="http://www.example.cmm"> <input class="clickaider_track_me" type="text" name="query"> </form>

4. User Variables

You can define up to 3 custom variables to tracking code, and then use our reports to see statistics and filtering.

To add varible with values just put next into code:

<script type="text/javascript"> <!-- clickaider_cid = "XXXXXXXX-YY"; ... clickaider_variable1 = "value of variable1"; clickaider_variable2 = "value of variable2"; clickaider_variable3 = "value of variable3"; // --> </script>