Has anybody experienced any problems with creating rounded corners on Divs? I am using the jQuery plugin from http://jquery.malsup.com/corner/
The problem is that the top corners are not rounding in Internet Explorer. Works fine with Firefox! Anybody got any advice?
Here's my code:
<script type="text/javascript">
$(document).ready(function() {
$("#panel").corner("10px");
});
</script>
Here's the div that gets rounded:
<div ID="panel">test</div>