onclick パラメータを持つ div があります。
<div onclick="some_function()"></div>
関数内のイベント オブジェクトにアクセスするにはどうすればよいですか? event.target を取得するために必要です
function some_function()
{
event = event || window.event;
var target = event.target || event.srcElement;
//does not work in IE and Firefox, but works in chrome
}