IE8 font goes bold when using .fadeto and .hover
Hi,
Hope someone can help. Been using jQuery for a short while now and I have stumbled upon what might as well be an IE8 bug. When I apply the following to a typical <ul> or <li> or even <a>:
- jQuery(document).ready(function(){
- jQuery("#menu").fadeTo("slow", 0.5);
- jQuery("#menu").hover(function(){
- jQuery(this).fadeTo("slow", 1.0);
- },function(){
- jQuery(this).fadeTo("slow", 0.5);
- });
- });
The font weight seems to go bold (not standard bold but some weight gets added)... it only happens in IE8 not in FF, Opera, or even Safari.
I checked my CSS and event went without it... still the same effect regardless of font used. I'm wondering if someone can confirm this and/or knows of a fix that I've missed.
Thanks in advance.
cache.