Search code examples
cssjquery-pluginsbackgroundtransparencycycle-plugin

jQuery Cycle Plugin : white background in IE (any version)


in IE jQuery Cycle Plugin sets the background to white... even i have the CSS transparent for everything


Solution

  • This is the correct answer to the original question:

    Add this param to your jQuery: cleartypeNoBg:true

    so it should look like this:

    $(document).ready(function() {
        $('#your_div_id').cycle({       
            fx: 'fade',
            cleartypeNoBg:true
        });
    });
    

    -W