From 23e255015fb5e4f5ce7e8dd091b1550e80cccdd9 Mon Sep 17 00:00:00 2001 From: John Resig Date: Thu, 24 Aug 2006 23:10:54 +0000 Subject: [PATCH] Added fix for non-standard CSS attributes in IE. --- src/jquery/jquery.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index a358238..08f325c 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -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,""); -- 1.7.10.4