Text Looks Like Crap/Distorted in Safari after Change of Opacity

I finally got IE to clear up its text after changing opacity with javascript, but it looks like Safari is suffering from the same issue.

When I have javascript change the opacity of a div layer with text in it back to 100, It looks distorted in Safari only.

My fix for IE was document.getElementById(‘mydiv’).style.removeAttribute(‘filter’)

So thought there might be something like that for safari.

Is there a work around for this browser?

Thanks
Ryan

You should set opacity to 1, not 100

I’m sorry, I meant 1. I was thinking 100 for IE.

I’ve tried .99 also with no success.

Ryan