I couldn't find any info on how Ace handles JS events, but I have a Markdown editor and am trying to attach mouseover events to links (which have the ace_underline class). I've tried doing the following:
$(document).on("mouseover", ".ace_underline", function()...
However the event doesn't seem to fire and I'm wondering if there's something happening with the Ace editor that is first capturing that event and preventing it? Any ideas?