I am trying to use Datejs for some date functions. But I am not getting some functions like Date.march() and Date.monday(). I have downloaded the files from Datejs. I am able to see in firebug that the page is getting the content of date.js. This is my code.
<!DOCTYPE html>
<html>
<head>
<title>Date</title>
<script src="date.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
alert(2222);
alert(Date.monday());
</script>
</body>
</html>
What am I doing wrong?
Works for me, have a fiddle: