There could also be other conflicts. However, there is an onload conflict and it can be resolved by removing the body onload:
Code:
<body onLoad="goforit()">
from the Dynamic Drive Live Date Script. And then where you have this or similar for the Epoch DHTML Calendar script, add the highlighted as shown:
Code:
<script type="text/javascript">
/*You can also place this code in a separate file and link to it like epoch_classes.js*/
var bas_cal,dp_cal,ms_cal;
window.onload = function () {
goforit();
bas_cal = new Epoch('epoch_basic','flat',document.getElementById('basic_container'));
dp_cal = new Epoch('epoch_popup','popup',document.getElementById('popup_container'));
ms_cal = new Epoch('epoch_multi','flat',document.getElementById('multi_container'),true);
};
</script>
The browser cache may need to be cleared and/or the page refreshed to see changes.
If you want more help, please post a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks