Side navigation
#14014 closed bug (invalid)
Opened June 12, 2013 03:34PM UTC
Closed June 27, 2013 08:54AM UTC
IE7 'getAttribute' error
Reported by: | dcardosopt@outlook.com | Owned by: | dcardosopt@outlook.com |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.10.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
In IE7 I'm getting the error: "Object doesn't support property or method 'getAttribute'"
That happens because in this code seccion, that is called in IE7, is been used return "elem.getAttribute(name, 4);" instead of "elem.href;"
Some attributes require a special call on IE
http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
if (!jQuery.support.hrefNormalized) {
// href/src property should get the full normalized URL (#10299/#12915)
jQuery.each(["href", "src"], function (i, name) {
jQuery.propHooks[name] = {
get: function (elem) {
return elem.getAttribute(name, 4);
}
};
});
}
Attachments (0)
Change History (2)
Changed June 12, 2013 06:15PM UTC by comment:1
owner: | → dcardosopt@outlook.com |
---|---|
status: | new → pending |
Changed June 27, 2013 08:54AM UTC by comment:2
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
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—you may need to change this to a specific version depending on the test case.
To get you started, use the appropriate boilerplate:
Open the link and click to "Fork" (in the top menu) to begin.
Also, please read:
Additional resources: