Right Click to Download Links
  • 06 May 2020
  • 1 Minute to read
  • Contributors
  • Dark
    Light
  • PDF

Right Click to Download Links

  • Dark
    Light
  • PDF

Article Summary

Download links are hyperlinks whose URL is a download file (the URL filename extension matches one of the types in the file types field).

If enabled, an event handler function is added for all links that are downloads, where a download is defined by the extension type in the downloadtypes array. The downloadtypes array is a comma-separated list of file extensions and has a default value of: xls,doc,pdf,txt,csv,zip,docx,xlsx,rar,gzip.

JavaScript Example:

window.webtrendsAsyncInit = function () {
        var dcs = new Webtrends.dcs();
        dcs.init( {
                dcsid: "dcs12345610000wocrvqy1nqm_123p",
                rightclick : true,
                downloadtypes : "xls,doc,pdf,txt,csv,zip,docx,xlsx,rar,gzip"
        });
        dcs.track();
}

Using right-click to download links

Suppose the right-click download file types field contains:.xls

And the page contains the following hyperlink:

<a href="smartsource.xls">SmartSource Spreadsheet</a>

Right-clicking would result in the following multi track parameters:

DCS.dcssip=tagbuilder.webtrends.com
DCS.dcsuri=/Help/EventTracking/smartsource.xls
WT.ti=Download:SmartSource Spreadsheet
WT.dl=20
WT.nv=container

JavaScript Reference:

dcsMultiTrack ParameterValue
DCS.dcssiphostname
DCS.dcsuripathname or "/"
WT.ti"RightClick:" + title
WT.dl25
WT.nvEnclosing element id or classname (if present)

Was this article helpful?