I am trying to add header text to the calendar object.
For both the single and doubleCalendar widgets, FF 3 works fine.
IE 6 however breaks on this code:
[code]
var d=document.createElement("DIV");
d.style.cssText="position:absolute;top:3px;left:60px;";
d.innerHTML="from...";
doubleCal.leftCalendar.con.firstChild.appendChild(d);
var e=document.createElement("DIV");
e.style.cssText="position:absolute;top:3px;left:260px;";
e.innerHTML="...to";
doubleCal.rightCalendar.con.firstChild.appendChild(e);
[/code]
Sadly, I cannot switch to another version of IE.
The error report is long and nasty, in case you are interested...
Any ideas..?
Thanks for all your efforts!