Skip to content

Commit

Permalink
Added fix for non-standard CSS attributes in IE.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Aug 24, 2006
1 parent 8a1adfc commit 23e2550
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jquery/jquery.js
Expand Up @@ -957,8 +957,8 @@ jQuery.extend({
if (!force && e.style[p])
r = e.style[p];
else if (e.currentStyle) {
p = p.replace(/\-(\w)/g,function(m,c){return c.toUpperCase()});
r = e.currentStyle[p];
var np = p.replace(/\-(\w)/g,function(m,c){return c.toUpperCase()});
r = e.currentStyle[p] || e.currentStyle[np];
} else if (document.defaultView && document.defaultView.getComputedStyle) {
p = p.replace(/([A-Z])/g,"-$1").toLowerCase();
var s = document.defaultView.getComputedStyle(e,"");
Expand Down

0 comments on commit 23e2550

Please sign in to comment.