Opened 15 years ago
Closed 15 years ago
#1634 closed bug (fixed)
document.body is null!.2
Reported by: | XASD | Owned by: | |
---|---|---|---|
Priority: | critical | Milestone: | 1.2.2 |
Component: | event | Version: | 1.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
http://dev.jquery.com/ticket/1572 is not closed. Demostrated code is internal to jquery's event processing pipeline.I'm talking about
$(function(){})
construct,before it's called fix() function already run,but body is not always available at the time.If I put script including instruction in "body",all works as expected,but in "head" section you can observe such anomaly quite easily-just reload several times page of moderate complexity and you'll see random "Object required" sparks.I'm using IE7 on vista,but IE6 has similar problem.This error not sacrifice Jquery's functionality,but it's very annoying by nature if "Script debugging" is enabled.
simple fix can be (b&&):
event.pageX = event.clientX + (e && e.scrollLeft || b&& b.scrollLeft || 0); ... event.pageY = event.clientY + (e && e.scrollTop || b&& b.scrollTop || 0);
Thanks.
Change History (2)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Milestone: | 1.2.1 → 1.2.2 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
This has been fixed by Brandon in svn.