The MultiTrack function lets you track events other than page loads.
Multitrack is flexible and allows you to track just about any type of event you want. Here are just a few examples of the events you can track:
Here are a couple of multitrack examples:
Basic Mulitrack call:
Webtrends.multiTrack({
argsa: ["DCS.dcsuri", "/home/tab_view_history, "WT.dl", "0"]
})
Using Multitrack from jQuery:
$(document).ready(function () {
$("#Webtrends_com").click(function (e) {
Webtrends.multiTrack({
argsa: ["DCS.dcsuri", "/", "WT.dl", "24", "WT.ti", "Offsite:webtrends.com"]
});
});
});