I am investigating some websites and really would like to know how they achieve some effects.
Sometimes the code is like this:
<a class="test" href="#">Test</a>
There is no function embedded directly but I'm quite sure there's something like:
$('a.test').click(function(){....});
But this could be hidden in its linked resources. So it's hard to find what's the tricks that I want.
Is there anyway to find, like a HTML element's all bind functions from Chrome JavaScript console?