javascript - Is there any way to trace the user activity in a web application? -
i have image manipulation application applying effects such zoom, pan, rotate, etc. possible keep track of order in user performs these manipulations? have these manipulations done in javascript. no communication web server. can done in windows app maintaining log files, there way trace user actions in web application (keep record)?
you can create function call after performing action. function can like:
function logfunction(loginfo){ //perform ajax call server , store in db or textfile or }
Comments
Post a Comment