Dear All, How to track event on Google analytic. i have page which is in PDF form. i want track that how may user clicked and download the PDF file. Also Suggest me for the event Track code. Thanks
One easy way is on the download button make an onclick event that pushes to GA. For example onClick=_gaq.push(['_trackEvent', 'category name', 'action name', 'action label']); This is inside the <a href="path/to/pdf" onClick=stuff> or the <input type="submit" onClick=stuff > code, depending how you allow them to download. Cheers