[EMAIL PROTECTED] wrote:
is there any solution to remove a single css-property?
i've the problem, that .show() leaves >>filter: ;<< in the inline-style
(MSIE).
now i want to remove only this property, but only this and not e.g.
the whole inline-style (.removeAttr('style')).
is there a plugin or a core feature, which can help me?
greetings
Patric
You can try:
$('#foo').css('filter', '');
Or, if that doesn't work:
$('#foo')[0].style.filter = '';
(I was using the latter in the tabs plugin but right now I can't
remember if I was using it because the first variant didn't work.)
--Klaus