I've narrowed a defect down to this sample, where the numeral "1" is unclickable in IE7 (only):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title>Click 1</title>
<style type="text/css">
div { position: absolute; overflow: auto; }
table { position: relative; }
span { position: fixed; top: 100px; }
</style>
</head><body>
<div>
<table>
<tr>
<span onclick='alert(1)'>1</span>2
</tr>
</table>
</div>
</body></html>
Can anyone identify the root cause, so I understand my options for workarounds?
I'm using all the CSS represented here to build a sortable fixed head scrolling table. In the original code, the span actually lives in a TH, fixing the headings above the scrolling table via negative margin, while allowing the table renderer to account for the header text in column width, without table duplication or 'onResize'-simulating timers.
sortTable()? – alex Mar 5 '11 at 0:51