From 3ed4b22073767c17c099351637514f5928c0fd68 Mon Sep 17 00:00:00 2001 From: timmywil Date: Wed, 4 May 2011 11:40:46 -0400 Subject: [PATCH] Run property names through propFix in removeProp --- src/attributes.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/attributes.js b/src/attributes.js index 9fdbbd57..97638632 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -26,6 +26,7 @@ jQuery.fn.extend({ }, removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; return this.each(function() { // try/catch handles cases where IE balks (such as removing a property on window) try {