In the Calendar5.js calendar control, click the scroll bar on the right under IE8 to report an error.

Source: Internet
Author: User


Recently, the Calendar5 js calendar control has been widely used in projects. It works normally in IE6, IE7, and chrome and FF, however, in IE8, if you click the scroll bar on the right, a script error prompt will pop up: "The object does not support this attribute or method." No solution is available on the Internet.
At last, I am not familiar with js programming and debugged to rewrite the 459th lines in the Calendar5.js source file (different source files are slightly deviated) to solve this problem.
Original code:
[Javascript]
// Drag the calendar to start
Function dragStart (evt ){
 
Evt = evt | window. event;
Var _ target = evt.tar get | evt. srcElement;
 
If (_ target. getAttribute ("Author") = "alin_bar ")
{
DragObj = getObjById ("Calendar ");
MouseOffset = getMouseOffset (dragObj, evt );
}
}
Improved code:
[Javascript]
Function dragStart (evt ){
 
Evt = evt | window. event;
Var _ target = evt.tar get | evt. srcElement;
 
If (_ target. nodeName! = Undefined) & _ target. getAttribute ("Author") = "alin_bar ")
{
DragObj = getObjById ("Calendar ");
MouseOffset = getMouseOffset (dragObj, evt );
}
}

This article provides reference to colleagues who are not familiar with JS programming but are troubled by this problem.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.