Problems with _gaq.push and _trackEvent?
Problems with _gaq.push and _trackEvent?
- Check JavaScript/Firebug console for errors.
- Check that all values are in supported format, e.g. the value parameter must be an integer
- Use the queue to postpone or perform actions in sequence:
_gaq.push(['_trackEvent',...])
_gaq.push(function() {
document.location = 'http://google.com'
})