Make sure that undefined is always returned for undefined data properties. Fixes...
[jquery.git] / src / data.js
index 0e243ca..a97ac04 100644 (file)
@@ -25,7 +25,7 @@ jQuery.extend({
                var id = elem[ expando ], cache = jQuery.cache, thisCache;
 
                if ( !id && typeof name === "string" && data === undefined ) {
-                       return null;
+                       return;
                }
 
                // Compute a unique ID for the element
@@ -80,7 +80,10 @@ jQuery.extend({
                // Otherwise, we want to remove all of the element's data
                } else {
                        if ( jQuery.support.deleteExpando ) {
-                               delete elem[ expando ];
+                               delete elem[ jQuery.expando ];
+
+                       } else if ( elem.removeAttribute ) {
+                               elem.removeAttribute( jQuery.expando );
                        }
 
                        // Completely remove the data cache