Side navigation
#2537 closed bug (fixed)
Opened March 18, 2008 03:03AM UTC
Closed May 13, 2008 12:38AM UTC
attr() can return undefined instead of 0
Reported by: | haijun-zeng | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.2.4 |
Component: | core | Version: | 1.2.3 |
Keywords: | offsetLeft | Cc: | |
Blocked by: | Blocking: |
Description
I use $(this).attr("offsetLeft") to get the offsetLeft of a DIV, when the offsetLeft is 0, it will return 'undefined'. when the offsetLeft is large then 0, it will return the correct number.So, I need to use this.offsetLeft instead of $(this).attr("offsetLeft");
This should fix that.