I'd like to pass values to the download event for Webtrends. Is this possible? Here's what I've tried, but it doesn't work:
utag.track('download', {var1: value1, var2: value2});
I have Preserve set to true in the Webtrends tag, so setting the values in utag_data beforehand isn't really an option, since they won't carry over when the download event is fired.
As a work around, I cleared the Download Type field in the Webtrends tag config. This allows me to use utag.link and send whatever values I want, along with WT.dl = 20 to simulate a download event. Clearing the Download Type field eliminates double-event firing (for WT.dl = 20). This seems like a bit of a hack to me, so I'd like to know if there's a better way.