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')
}
});
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---