|
 Manoj Singh - 2012-06-07 12:56:26
It seems to be very nice code for click track but how to use it on
1. a static web page
2. a dynamic web page (may be in pp, asp or jsp)
3. comple web site
MS Raghuvanshi
 Frederik Yssing - 2012-06-07 21:23:27 - In reply to message 1 from Manoj Singh
Its actually really simple.
All you have to do is set up the table in your database.
And then include the javascript in you websites header.
<head>
<script type='text/javascript' src='click-tale.js'></script>
</head>
Then every time a user clicks on any page that has the javascript included it registers the coordinates, the URL and the usersession. You can change the session name to handle any session you like.
And when you want to access the information you just browse to the php script without requests, and it will provide you with the right links.
 Damianus Noris - 2012-06-08 00:39:41 - In reply to message 2 from Frederik Yssing
how do we call the getClickXY function, i've tested in Firefox and it's not working. Please help, thanks
 Frederik Yssing - 2012-06-08 01:21:24 - In reply to message 3 from Damianus Noris
That should be done in the javascript
line 2: document.onclick = getClickXY;
If it doesnt work, you should be able to add the function call to the body via the onclick eventlistener
 Frederik Yssing - 2012-06-08 01:26:08 - In reply to message 4 from Frederik Yssing
Oh yes, I am sorry, I forgot to mention that it requires JQuery.
 Ilkhom John Adams - 2017-12-21 10:13:17 - In reply to message 5 from Frederik Yssing
Hello, excuse me, can You give me complete sample, how to connect with db and use script?
Thank you.
|