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:
396dd21
)
.val() on empty options returns the text value rather than the value in Blackberry...
author
John Resig
<jeresig@gmail.com>
Mon, 23 Aug 2010 21:10:39 +0000
(14:10 -0700)
committer
John Resig
<jeresig@gmail.com>
Mon, 23 Aug 2010 21:10:39 +0000
(14:10 -0700)
src/attributes.js
patch
|
blob
|
history
diff --git
a/src/attributes.js
b/src/attributes.js
index
1278ff8
..
d2fc202
100644
(file)
--- a/
src/attributes.js
+++ b/
src/attributes.js
@@
-139,7
+139,10
@@
jQuery.fn.extend({
if ( elem ) {
if ( jQuery.nodeName( elem, "option" ) ) {
- return (elem.attributes.value || {}).specified ? elem.value : elem.text;
+ // attributes.value is undefined in Blackberry 4.7 but
+ // uses .value. See #6932
+ var val = elem.attributes.value;
+ return !val || val.specified ? elem.value : elem.text;
}
// We need to handle select boxes special