Bug Tracker

Opened 12 years ago

Closed 11 years ago

Last modified 11 years ago

#10828 closed bug (fixed)

attr("coords") returns undefined in IE7

Reported by: jesseharold@… Owned by: mikesherov
Priority: low Milestone: 1.7.2
Component: attributes Version: 1.7
Keywords: Cc:
Blocked by: Blocking:

Description

I was only able to reproduce this in "true" IE7, not IE8 with IE7 view turned on in the developer tools.

For the same element, .getAttribute("coords") returned the string correctly.

Original code with bug:

jQuery("map area").each(function(index2){

console.log(jQuery(this).attr("coords"));undefined in IE7

});

Working code:

jQuery("map area").each(function(index2){

console.log(this.getAttribute("coords"));

});

Change History (7)

comment:1 Changed 12 years ago by Timmy Willison

Component: unfiledattributes
Owner: set to jesseharold@…
Priority: undecidedlow
Status: newpending

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.

comment:2 Changed 12 years ago by jesseharold@…

Status: pendingnew

http://jsfiddle.net/svvBs/1/

You can reproduce the bug here, using a true IE7 browser

comment:3 Changed 12 years ago by jesseharold@…

Or this one, which uses the boilerplate:

http://jsfiddle.net/pvc7H/1/

comment:4 Changed 12 years ago by Timmy Willison

Milestone: None1.7.2
Owner: changed from jesseharold@… to Timmy Willison
Status: newassigned

Confirmed. http://jsfiddle.net/timmywil/svvBs/3/

It seems specified is broken for the coords attribute.

comment:5 Changed 11 years ago by mikesherov

Owner: changed from Timmy Willison to mikesherov

comment:7 Changed 11 years ago by Mike Sherov

Resolution: fixed
Status: assignedclosed

Fixes #10828, .attr("coords") returns undefined in IE7

Changeset: da02e190b5fa57d56a6561ac64209c36c64c4ecd

Note: See TracTickets for help on using tickets.