-
-
Save thednp/78a4b695b446df6f4ac3 to your computer and use it in GitHub Desktop.
Removing Inline Opacity Filters After Fade-In / Fade-Out Transitions In IE8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// el.style.filter = ''; isn't working, this is the solution | |
el.style.removeAttribute( "filter" ); | |
// when plain js is used, the above isn't working so you can try | |
el.style.setAttribute( "filter",'' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment