It looks like the code was minimized by some tool. This creates a more compact form of Javascript so a library, for example, becomes smaller in size which reduces download times and makes the library harder to read. The code is still Javascript but is indeed harder to read.
So to clarify: you are looking at the correct function which handles the click but it has most likely been made harder to read by a tool.
When I look at the sample image you included it looks like the third line
t && !t.disabled && t.click(), e.preventDefault();
Could have looked like this before it was minimized:
if(t && !t.disabled)
{
t.click();
e.preventDefault();
}
I doubt there is a full fledged tool which could completely un-minify this code. Especially because variable names are almost always minified. For example a variable name "persons" could be shortened to just "p". A un-minify tool can not know this, of course.
Also take a look at this question: Tool to Unminify / Decompress JavaScript