イベントパラメータを渡さずに、呼び出された JavaScript 関数から JavaScript 起動イベントを取得することは可能ですか?
サンプルコードは次のとおりです。
<html>
<head>
<script>
function myFunction()
{
// How I will get from here the fired event ??
}
</script>
</head>
<body>
<p id="paragraghhh" onclick="myFunction()">
Click on this paragraph. An alert box will
show which element triggered the event.
</p>
</body>
</html>