<html>
<head>
<script>
/* <a href="http://quirksmode.org" >http://quirksmode.org</a> */
function getEvent (e) {
var event = e || window.event;
if( ! event.target ) {
event.target = event.srcElement
}
return event;
}
</script>
</head>
<body>
<a href="#fred" id="fred" onclick="alert(getEvent(event).target)">foo</a>
</body>
</html>
Which element was clicked?
Leave a Reply
You must be logged in to post a comment.