Opened 15 years ago
Closed 15 years ago
#2073 closed bug (fixed)
offset(): parent has no properties
Reported by: | daepark | Owned by: | brandon |
---|---|---|---|
Priority: | major | Milestone: | 1.2.2 |
Component: | offset | Version: | 1.2.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When calling offset, I sometimes get parent is not defined ("parent has no properties") error in firebug. The offending line is:
while ( parent.tagName && !/^body|html$/i.test(parent.tagName) ) {
checking for parent first seems to make this problem go away:
while ( parent && parent.tagName && !/^body|html$/i.test(parent.tagName) ) {
Note: See
TracTickets for help on using
tickets.
Fixed in [4241]