#11397 closed bug (duplicate)
$('#some_select').val() results in "use of attributes specified attribute is deprecated" warning on Firefox 7+
Reported by: | glob | Owned by: | glob |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | attributes | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
$('#some_select').val() results in "use of attributes' specified attribute is deprecated" warning on firefox.
jquery is referencing the "specified" property on an Attr object, this is depreciated with Firefox 7, and always returns true. see https://developer.mozilla.org/En/DOM/Attr
the problem appears to be at line 2630 of 1.7.1:
return attributeNode && attributeNode.specified ?
Change History (12)
comment:1 Changed 11 years ago by
Owner: | set to glob |
---|---|
Status: | new → pending |
comment:3 Changed 11 years ago by
Component: | unfiled → attributes |
---|---|
Priority: | undecided → low |
Status: | new → open |
comment:6 Changed 11 years ago by
Bump it up ..still present in 1.8b2
Though it seems not to be in the same place
valHooks: { option: { get: function( elem ) { // 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; } },
comment:7 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | open → closed |
Fix #11397. Shush Firefox warning by re-breaking #6932 for BB 4.7.
At this point BlackBerry 4.7 (and related ancient browsers) should be scarce (released circa 2008) so #6932 will be closed wontfix for this edge case.
Changeset: e866893fd29b0328ebc282cf0ba716e6f87384c3
comment:8 Changed 11 years ago by
Revert "Fix #11397. Shush Firefox warning by re-breaking #6932 for BB 4.7."
This reverts commit e866893fd29b0328ebc282cf0ba716e6f87384c3.
Failures in IE6 when this is removed, unfortunately.
Changeset: c29660c5936b76787c4a864d8188b325bc81a81f
comment:9 Changed 11 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
comment:10 Changed 11 years ago by
Milestone: | None → 1.next |
---|---|
Status: | reopened → open |
comment:11 Changed 11 years ago by
Resolution: | → duplicate |
---|---|
Status: | open → closed |
Moving these all under #12072. At this time we are not in need of any additional "me too", "hey I see this on my console", or "when are you going to fix this" messages. We are aware of the issue.
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket.
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/ Open the link and click to "Fork" (in the top menu) to get started.