A
andrew
Hi,
Let me know if I should ask this in a microsoft jscript group instead as the
problem I'm witnessing only seems to appear in IE. Or if you can recommend
another group if this is not an appropriate one.
I'm having a problem with fieldsets in IE moving around on me as I hover
from one table to another. The problem only appears in IE (I'm using v6).
If I hover over the tables row, the bottom fieldset moves up and down as I
move from on table to other.
If I remove the className assignment, the issue does not occur, but I need
to do something similar on my page. Can somebody please tell me what's
going on here? The essence of the sample code is pretty close to what I'm
doing in my real application.
Any help appreciated,
Andrew
<html>
<body>
<script type="text/javascript">
function change(elem) { elem.className = '' }
</script>
<fieldset style="margin-bottom:10px">
<table width="100%">
<tr onmouseover="change(this)"><td>test</td></tr>
</table>
</fieldset>
<fieldset>
<table width="100%">
<tr onmouseover="change(this)"><td>test</td></tr>
</table>
</fieldset>
</body>
</html>
Let me know if I should ask this in a microsoft jscript group instead as the
problem I'm witnessing only seems to appear in IE. Or if you can recommend
another group if this is not an appropriate one.
I'm having a problem with fieldsets in IE moving around on me as I hover
from one table to another. The problem only appears in IE (I'm using v6).
If I hover over the tables row, the bottom fieldset moves up and down as I
move from on table to other.
If I remove the className assignment, the issue does not occur, but I need
to do something similar on my page. Can somebody please tell me what's
going on here? The essence of the sample code is pretty close to what I'm
doing in my real application.
Any help appreciated,
Andrew
<html>
<body>
<script type="text/javascript">
function change(elem) { elem.className = '' }
</script>
<fieldset style="margin-bottom:10px">
<table width="100%">
<tr onmouseover="change(this)"><td>test</td></tr>
</table>
</fieldset>
<fieldset>
<table width="100%">
<tr onmouseover="change(this)"><td>test</td></tr>
</table>
</fieldset>
</body>
</html>