Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When setting opacity to an element in IE8+, according to http://www.quirksmode.org/css/opacity.html I can use
.opacity { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; }
note that the opacity in IE8 filter is in upper case
opacity
but jQuery 1.* currently only support getting the result setted in lower case opacity, like filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
see demo http://jsfiddle.net/c9d5ctfa/ in IE8
Also in MSDN, both upper case and lower case are used in the examples.
My PR: #1704
The text was updated successfully, but these errors were encountered:
CSS: Fix get upper case alpha opacity in IE8
cc9226b
Fixes gh-1705 Closes gh-1704
Fixed via 3fed4b3
Sorry, something went wrong.
3fed4b3
c5e8e12
Fixed via c5e8e12 (the previous commit was landed on an incorrect branch).
mgol
No branches or pull requests
When setting opacity to an element in IE8+, according to http://www.quirksmode.org/css/opacity.html I can use
note that the
opacityin IE8 filter is in upper casebut jQuery 1.* currently only support getting the result setted in lower case
opacity, likefilter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);see demo http://jsfiddle.net/c9d5ctfa/ in IE8
Also in MSDN, both upper case and lower case are used in the examples.
My PR: #1704
The text was updated successfully, but these errors were encountered: