Hey, would appreciate some help with these two issues with the code
below...
1) In IE, when using the dropdown and the mouse goes outside the box,
the selection is filled. This might be because the focus is briefly
changed briefly when the table responds to the onmouse out... is there
a way to prevent this?
2) I'd like to make the div on a seperate layer and bring it down so
it overlaps with the table/box border a little... have tried doing
this with css positioning but no luck... any suggestions?
thanks heap :) ... jason
<div><b>Title </b></div>
<table cellspacing="0" cellpadding="0" border="0">
<tr><td onmouseover="th is.style.backgr oundColor='#aaa aaa';"
style="backgrou nd-color:#dddddd"
onmouseout="thi s.style.backgro undColor='#dddd dd';">
<table cellspacing="1" cellpadding="6" border="0"
width="100%"><t r><td valign="top" bgcolor="#fffff f"
background="ima ges/heart.gif">
<table>
<tr>
<td align="right">S elect</td>
<td> </td>
<td><select width="20">
<option></option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
</select></td>
</tr><tr>
<td align="right">A ge</td>
<td> </td>
<td><input value=18 size=2> to <input value=99
size=2></td>
</tr>
</table>
</td></tr></table>
</td></tr></table>
below...
1) In IE, when using the dropdown and the mouse goes outside the box,
the selection is filled. This might be because the focus is briefly
changed briefly when the table responds to the onmouse out... is there
a way to prevent this?
2) I'd like to make the div on a seperate layer and bring it down so
it overlaps with the table/box border a little... have tried doing
this with css positioning but no luck... any suggestions?
thanks heap :) ... jason
<div><b>Title </b></div>
<table cellspacing="0" cellpadding="0" border="0">
<tr><td onmouseover="th is.style.backgr oundColor='#aaa aaa';"
style="backgrou nd-color:#dddddd"
onmouseout="thi s.style.backgro undColor='#dddd dd';">
<table cellspacing="1" cellpadding="6" border="0"
width="100%"><t r><td valign="top" bgcolor="#fffff f"
background="ima ges/heart.gif">
<table>
<tr>
<td align="right">S elect</td>
<td> </td>
<td><select width="20">
<option></option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
</select></td>
</tr><tr>
<td align="right">A ge</td>
<td> </td>
<td><input value=18 size=2> to <input value=99
size=2></td>
</tr>
</table>
</td></tr></table>
</td></tr></table>
Comment