this is my first post on the forum. thanks a lot to all contributors for this great piece of software (modx).
thanks to jaredc for this great plugin. saved me a lot of time. where can I donate to buy you a cup of tasty cappuccino?
I’m not sure what goldsky was getting at with this change. I appreciated it at the time because it allowed users to move between months, but that’s just because this change, by itself, breaks the JS AJAX functionality and the calendar then works without the JS. I discovered that my AJAX problem moving between months stemmed from not naming one of my container div ids correctly (it needed to be <div id="ee_miniCalendarContainer"> or at least match what I had in the config). Once that was fixed, the errors went away and the calendar worked without the change above.
// var xhro = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("MSXML2.XMLHTTP.3.0");
// using regular cross-browser check, added by rico
var xhro = false;
//Check if we are using IE.
try {
//If the javascript version is greater than 5.
xhro = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
//If not, then use the older active x object.
try {
//If we are using IE.
xhro = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
//Else we must be using a non-IE browser.
xhro = false;
}
}
//If we are using a non-IE browser, create a JavaScript instance of the object.
if (!xhro && typeof XMLHttpRequest != 'undefined') {
xhro = new XMLHttpRequest();
}

xhro.send('n='+n+'&a=gd&i='+eeid);
Still getting an error in IE6 when I click on a link in the "Coming Events" section.
Create template variable “EasyEvents_Start” (or similar) and associate it with your template
– following are sample field values
■ Caption: “Start Date”
■ Description: “The start date/time of the event (choose time first, then click date)”
■ Input type: “Date”
■ Widget: Date Formatter
Eh?
solved:
read here: http://modxcms.com/forums/index.php/topic,21007.msg201852.html#msg201852
thank you, Goldsky