Bug Tracker

Opened 13 years ago

Closed 12 years ago

#6708 closed bug (fixed)

Opera has inconsistent result for usemap attribute value

Reported by: kemayo Owned by: Timmy Willison
Priority: low Milestone: 1.6
Component: attributes Version: 1.5.2
Keywords: Cc:
Blocked by: Blocking:

Description

With the html: <img id="foo" src="foo.gif" usemap="#bar"/>

This happens:

$('#foo').attr('usemap') == "http://abc.com/abc.html#bar";
$('#foo').get(0).getAttribute('usemap') == '#bar';

All other browsers I've tested return just '#bar' as the attr for usemap.

Change History (6)

comment:1 Changed 13 years ago by dmethvin

Looks like this is fixed if useMap is added to the special regexp:

	rspecialurl = /href|src|style|useMap/,

comment:2 Changed 13 years ago by miketaylr

Milestone: 1.4.31.4.5
Owner: set to miketaylr
Priority: low
Status: newassigned
Version: 1.4.21.4.3

comment:3 Changed 13 years ago by miketaylr

Fiddle showing confirmed behavior: http://jsfiddle.net/uguTR/

comment:4 Changed 12 years ago by dmethvin

Milestone: 1.4.51.5

comment:5 Changed 12 years ago by Timmy Willison

Milestone: 1.6
Owner: changed from miketaylr to Timmy Willison
Version: 1.4.31.5.2

Also fixed in attrhooks for jQuery 1.6: http://jsfiddle.net/uguTR/2/

comment:6 Changed 12 years ago by Timmy Willison

Resolution: fixed
Status: assignedclosed
Note: See TracTickets for help on using tickets.