I need to create an analytics solution for a client. They have a large number of DOM manipulations through JQuery/Ajax. Besides making a call to a function for each DOM manipulation, is there any other efficient way to log DOM Events?
I need to log each DOM manipulation so that we can run analytics on that data. There are many instances where the site will display different data to the user but does not go out to the server, instead it is served up by manipulating the DOM.
Logging each DOM manipulation seems to be a costly (in terms of server processor) solution.