common-web
common-web copied to clipboard
Turn web user activity into a analyzable stream of JSON event data
Fix bug InputTrackChanges not return current value Add trackAjaxformsubmission method Fix bug formElementToProperties use serializeArray but some form elements doesn't have name attribute will not include in return of serializeArray
I'd like to get some opinions on this... I'm not sure if this is CommonWeb's problem to solve, or not. CommonWeb kind of abstracts away the idea of what tracking...
Under the assumption that CommonWeb is loaded at the initial page load, and not loaded dynamically, we should be able to tell how long the user has been on the...
One of the big design goals of an open source project should be modularization. This has a bunch of benefits, such as readability, ownership of modules, testability, less brittle for...
Title says it all... Except, you may notice that I _did not_ mention Bower. It seems to me that the NPM/Browserify workflow is starting to gain momentum, and Bower is...
Javascript's [Performance Metrics](http://caniuse.com/#search=performance) have pretty good brower support. That information is super duper useful, so we should probably track it. `pageLoad` should, IMO, by default include: - performance.navigation.redirectCount - performance.navigation.type...
OK, so this idea has been marinating for a few days. Check out http://trackjs.com/ I'm not sure if it's something that would be built in to CommonWeb, but error tracking...
Thanks for the suggestion Cole!
The new standard for jQuery is to use: ``` $(document).on('click', 'selector', function() {}); ``` I know that the desire is to get away from jQuery, but even once we do...