From 83e9ce95d753bac0a860271ca85aef474295c1c4 Mon Sep 17 00:00:00 2001 From: aFarkas Date: Sat, 23 Apr 2011 21:57:55 +0200 Subject: [PATCH] handle data- and aria- special --- src/attributes.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/attributes.js b/src/attributes.js index 99088448..5d8a7adb 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -6,6 +6,7 @@ var rclass = /[\n\t\r]/g, rtype = /^(?:button|input)$/i, rfocusable = /^(?:button|input|object|select|textarea)$/i, rclickable = /^a(?:rea)?$/i, + special = /^(?:data-|aria-)/, formHook; jQuery.fn.extend({ @@ -311,7 +312,7 @@ jQuery.extend({ if ( value !== undefined ) { - if ( value === null || value === false ) { + if ( value === null || (value === false && !special.test( name )) ) { jQuery.removeAttr( elem, name ); return undefined; @@ -319,7 +320,7 @@ jQuery.extend({ return ret; } else { - if( value === true ){ + if( value === true && !special.test( name ) ){ value = name; } elem.setAttribute( name, "" + value );