Por favor, alguien podría ayudarme con este código el epoch_classes.js esta cargado, el epoch_styles.css tambien cargado y continua el error, no funciona genera error típico de javascript. Donde estoy patinando (cometiendo el error)
realizo pruebas y nada
Please gracias.
Allí el código copiado de este link
http://www.meanfreepath.com/javascri.../examples.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Página sin título</title>
<script type="text/javascript" src="epoch_classes.js"></script>
<link rel="stylesheet" type="text/css" href="epoch_styles.css" />
<script type="text/javascript">
var bas_cal, dp_cal, ms_cal; // declare the calendars as global variables
window.onload = function () {
/*initialize any calendars on the page - in this case 3.*/
bas_cal = new Epoch('bas_cal','flat',document.getElementById('ba s_cal'));
dp_cal = new Epoch('dp_cal','popup',document.getElementById('da te_field'));
ms_cal = new Epoch('ms_cal','flat',document.getElementById('ms_ cal'),true);
};
</script>
</head>
<body>
<div id="bas_cal"></div>
<!--Datepicker container. The <input> text element is required, the button element is optional-->
<input type="text" id="date_field" />
<input type="button" value="..." onclick="dp_cal.toggle();" />
<!--Container for multiselect version of Epoch-->
<div id="ms_cal"></div>
</body>
</html>