From 396dd2127330a7ed742d1e9092af54b668c46e85 Mon Sep 17 00:00:00 2001 From: John Resig Date: Mon, 23 Aug 2010 12:38:55 -0700 Subject: Fixing getting/setting classes and makeArray(RegExp) for Blackberry 4.7. Fixes #6930, #6931. --- src/attributes.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/attributes.js') diff --git a/src/attributes.js b/src/attributes.js index aca9e055d..1278ff84b 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -278,7 +278,8 @@ jQuery.extend({ } // If applicable, access the attribute via the DOM 0 way - if ( name in elem && notxml && !special ) { + // 'in' checks fail in Blackberry 4.7 #6931 + if ( (name in elem || elem[ name ] !== undefined) && notxml && !special ) { if ( set ) { // We can't allow the type property to be changed (since it causes problems in IE) if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) { -- cgit v1.2.3