Hi,
you are doing it wrong.
You must use the ID of the event, you are using a number 69 that makes no sense.
In the PDF docs you find detailed instructions and the sample code to use this technique:
| Code: |
<a href="http://mysite.com/document.pdf"
onclick="document.getElementById('trackdownload').src='http://mysite.com/index.php?
option=com_jrealtimeanalytics&track=1'">Download PDF</a>
<iframe id="trackdownload" style="display:none" src=""></iframe>
|
where the value of the parameter 'track' is the event ID, the right column in the list. In your case the ID of your event named 'track69' is 2 so you will have
http://mysite.com/index.php?option=com_jrealtimeanalytics&track=2
The 'src' attribute in the iframe can be left empty.