I am looking for a way to list all elements that have onclick event on a page.
onclick
If you use jQuery >= 1.4, you can get an Array of all elements with onclick attribute by writing the oneliner:
$('body *').toArray().filter(function(el) { return $(el).attr('onclick') });