Modify ↓
Ticket #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: | ||
| Blocking: | Blocked by: |
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) ) {
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Fixed in [4241]