JQuery Tabs

JQuery Tabs


After reading all the posts about JQuery animations (opacity etc.) and
the affect of ClearType I thought I'd post this quick fix.
JQuery UI Tabs looked awefull in IE after a fx: {opacity:'toggle'} due
to IE filter left behind. Aside from a fix in JQuery here is a quick
and dirty for Tabs.
show : function(event, ui) {ui.panel.style.removeAttribute('filter')}
As in:
    $("#apply-tabs > ul").tabs( {
        remote: true,
        ajaxOptions: {cache: false},
        spinner:'Loading...',
        fx : {
            height: 'toggle',
            opacity: 'toggle',
            duration: 'slow'
        },
        show : function(event, ui) {
            ui.panel.style.removeAttribute('filter')
     }
    });