In a Google Web Toolkit project, I have a button in a website that’s used to track activity. I am asking this question as a maintenance developer without in-depth knowledge of the software that I’m fixing.
I have determined the CSS class name that’s used for the image, which is put on a button. When the button is pressed, a user then tracks activity. The CSS is called “trackActivity.”
I would like to know what code gets called when that button is pressed.
How could I determine where to find the code that registers code against this particular button, of whose CSS class I’m aware.
Thanks
If your new to development perhaps try viewing the source of the page and searching for trackActivity, perhaps the javascript is in-line. If not open the .js files, probably found at the top of the source and search in there. That will likely provide some more info…