[jQuery] Get DOM elements under click

[jQuery] Get DOM elements under click


hello,
I'm wondering how to access the elements under a mouse click.
At first I tried iterating through all the elements and checking each
one, but as you can guess it was too slow.
Then I tried binding mouse click events to all the elements but it got
messy.
Is there a way to get a list of elements that the mouse has clicked on
even if they don't have click events defined?
Richard