Fading issues in Internet Explorer 7 when using jQuery

前端 未结 5 1670
执念已碎
执念已碎 2020-12-21 11:07

I\'m using jQuery on a site that I\'m working on and everything works fine - except in Internet Explorer 7 (and previous versions, but the site doesn\'t support them). Take

5条回答
  •  醉话见心
    2020-12-21 11:51

    jQuery.fn.fixClearType = function(){
        return this.each(function(){
            if(typeof this.style.filter  && this.style.removeAttribute)
            this.style.removeAttribute("filter");
        })
    }
    

提交回复
热议问题