Pop-Out
function getEvents(eventDate)
{
DWREngine._execute(_ajaxConfig._cfscriptLocation,null,'getEvents',eventDate,showEvents);
}
// call back function
function showEvents(r)
{
$('divEvent').innerHTML = r;
}
Cut-N-Paste
function getEvents(eventDate) { DWREngine._execute(_ajaxConfig._cfscriptLocation,null,'getEvents',eventDate,showEvents); } // call back function function showEvents(r) { $('divEvent').innerHTML = r; }