jQuery Corners and IE Problems
- by Tom
Hi Guys,
I am using "malsups" jQuery corner plugin - http://jquery.malsup.com/corner/ - and having a bit of nightmare of a time with IE. Basically I have
<ol><li>
<span class="main">
<span class="test1"></span>
<span class="test2"></span>
<span class="test3">
<span id="test4"></span>
<span id="special" class="special">
<span class="test4">TEXT</span>
</span>
</span>
</li></ol>
Basically, in IE when I try and make the id="special" have rounded corners - i get a distorted view. I think its something related to problems with referencing li elements using
jQuery('#special').corner('5px');
Could anyone help :) ?