
IE won't fade in/out element if PIE class is attached
I have the following div:
<div class="button border-radius" style="width:150px;height:150px;background:#F00;margin:0 auto;border-radius:70px;-webkit-border-radius:70px;-moz-border-radius:70px;"></div>
and the following jquery:
$(".button").fadeTo('slow', 0);.
The fadeTo doesn't work (I tried animating to 0 as well). If I remove the border-radius class, it does fade out correctly.
If it helps at all, here's a jsfiddle to illustrate:
http://jsfiddle.net/4hf8n/Thank you for your help!