Forum Moderators: open
It works fine in all browsers, but due to some additional third party javascript that messes with the styles, an image in the popup div goes transparent.
Basically, the problem doesn't exist when I take out the fade in, or more specifically when I don't use the Alpha transparency filter.
What I want to be able to do, is use the filter to fade the div in and then remove the filter entirely - but I can't work out how.
The filter is updated during the fade using
object.style.filter = alpha(opacity=xx);
I've tried
object.style.filter = '';
and
delete object.style.filter (which threw an error saying "object doesn't support this action")
Can anyone tell me how to actually remove the filter entirely?
This is all in IE6 by the way