I have jquery cury corners working great in firefox, this includes on a div and table. The div content is empty, but has a height and width vaule...this causes problems in IE as only the top of the div tag is cornerd, the table isnt at all.
<div id="content" class="content">
<table id="nav_links" class="nav_links" cellpadding="7">
<tr>
<td class="nav_background"><a href="index.html">Home</a></td>
</tr>
</table>
<script type="text/javascript">
$(document).ready( function()
{
$('.content').corners();
$('.nav_links').corners("bottom");
});
</script>
This isnt a duplicate post, as the first wasnt due to the IE problem
Cheers