#5418 closed bug (fixed)
this[0].ownerDocument is null in IE6
Reported by: | jmaki | Owned by: | brandon |
---|---|---|---|
Priority: | minor | Milestone: | 1.3.2 |
Component: | offset | Version: | 1.3.2 |
Keywords: | ie6 | Cc: | |
Blocked by: | Blocking: |
Description
In IE6, jQuery throws on error when attempting to calculate the body offset in jQuery.fn.offset. On line 4175, the browser attempts to access the "body" property of this[0].ownerDocument, but this[0].ownerDocument.body is null.
I *think* the correct behavior can be achieved by changing the line above to:
!this[0].ownerDocument ) return { top: 0, left: 0 }; |
Change History (3)
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
Component: | unfilled → offset |
---|---|
Keywords: | ie6 added |
need: | Review → Test Case |
Owner: | set to brandon |
That will get rid of the error, for sure, but under what circumstances does this error occur? Can you provide a test case?
comment:3 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Argh; sorry, the code got messed up. It should be: