質問が言ったように、特定の要素にバインドされたイベントのリストが必要です。
クリック、マウスオーバーなどのイベントが、dom の読み込み時にその要素にバインドされていることを意味します。
(ばか) 例:
$("#element").click(function()
{
//stuff
});
$("#element").mouseover(function()
{
//stuff
});
$("#element").focus(function()
{
//stuff
});
結果:
クリック、マウスオーバー、フォーカス