git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
157a383
)
Only do the hasAttribute check if the method exists - IE falls back to the === null...
author
jeresig
<jeresig@gmail.com>
Mon, 27 Sep 2010 13:19:21 +0000
(09:19 -0400)
committer
jeresig
<jeresig@gmail.com>
Mon, 27 Sep 2010 13:19:21 +0000
(09:19 -0400)
src/attributes.js
patch
|
blob
|
history
diff --git
a/src/attributes.js
b/src/attributes.js
index
608b8e3
..
1afcf2a
100644
(file)
--- a/
src/attributes.js
+++ b/
src/attributes.js
@@
-332,7
+332,7
@@
jQuery.extend({
// Ensure that missing attributes return undefined
// Blackberry 4.7 returns "" from getAttribute #6938
- if ( !elem.attributes[ name ] && !elem.hasAttribute( name ) ) {
+ if ( !elem.attributes[ name ] && (elem.hasAttribute && !elem.hasAttribute( name )) ) {
return undefined;
}