[Ovillo] fuente pixelada en IE7

sebastian garcia-valenciano sebastian en garcia-valenciano.net
Lun Mar 9 14:15:58 UTC 2009


me autorespondo, para que queda registrada la solución en la lista:

En IE7 falla la renderización de texto cuando se muestra/oculta con jQuery
ciertos elementos, el texto aparece pixelado.
solución: Aplicar:    this.style.removeAttribute('filter');

Ejemplo:

jQuery.fn.fadeIn = function(speed, callback) {
    return this.animate({opacity: 'show'}, speed, function() {
        if (jQuery.browser.msie)
            this.style.removeAttribute('filter');
        if (jQuery.isFunction(callback))
            callback();
    });
};


Más info en:
http://malsup.com/jquery/fadetest.html

saludos


Más información sobre la lista de distribución Ovillo