Created
January 15, 2010 16:29
-
-
Save philhawksworth/278176 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function registerPageChange(eventDescription, eventValue){ | |
// sample code from WebTrends documentation.... | |
// Register Event with WebTrends | |
dcsMultiTrack( | |
'DCS.dcsuri', eventValue, // name/value pair for URL | |
'WT.ti', 'FlashEvent:' + eventDescription // name/value pair for page title | |
); | |
// Go to URL | |
document.location.href = eventValue; | |
//...end of sample Webtrends code, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment