id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
10828,"attr(""coords"") returns undefined in IE7",jesseharold@…,mikesherov,"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""));
});

",bug,closed,low,1.7.2,attributes,1.7,fixed,,,,
