4 function displayAlert(element
)
6 alert('You clicked '+element
.nodeName
);
11 <table style=
"width:100px;height:100px;border:inset">
13 <td onclick=
"displayAlert(this)">Content.
</td>
16 <p>Click anywhere inside the table element and you should get an alert telling you so.
</p>
17 <p>Bugzilla
3662 was that clicking in non-content did not fire onclick handler.
</p>