We have a page running with angular.js, and has some ng-scope classes and ng-click attributes on various <tr> elements.
We would like to use something like greasemonkey to add functionality to the page after the fact. Specficially, on some <td> elements we want to append text on either a click or mouse enter.
I've tried using click and mouseenter event handlers with jQuery and nothing appears to fire. (Attaching to a <div>'s mouseenter and click handlers does fire them however.)
My knowledge of angular is limited and I'm not sure if attaching an ng-click attribute to an element interferes with adding jQuery handlers to other elements within it? If so, could I add to the ng-click handlers in some way? If so, how?
documentin this case.