I'm trying to figure the path google drive takes to load it's folder content, from when a folder name is double clicked till the point where that folders contents are loaded.
I've noticed that google use something like:
<div jsaction="click:cOuCgd; contextmenu:mg9Pef; dblclick:FNFY6c; focus:AHmuwe" jsname="LvFR7c" role="row" tabindex="0" aria-selected="false" aria-disabled="false">
What does dblclick:FNFY6c do? Is FNFY6c a function? How does this whole procedure work? I've been trying to figure how this works using Chromes DevTools, but cannot seem to find FNFY6c anywhere.
How do I find out what happens next when dblclick:FNFY6c is clicked?


JsAction isn't just an attribute, it's a whole google-d^ library for handling / dispatching events.
A basic setup of jsaction is like,
Let's take some examples on jsaction:
Here is a complete list of events in jsaction, in which most of them are css-events.
^: short for "google-developed" ;)