I'm trying to collect some stats on some clicking events happening on my webpage.
I figured I would add an onmouse event to the links I want to track, and trigger an ajax call to my tracking php script.
What would be the most efficient way to do that, knowing that I don't expect anything in return, and that things should go on normally even if it fails?
I know there are some special HTTP calls when you don't expect any data back. What is it exactly? Does jQuery support it? What about my php script, should it return a special HTTP header?
Any advice to make this efficient is welcomed.
Thanks
Nathan