I am attempting to utilize Datejs for some date functions. However, I am encountering issues with functions like Date.march() and Date.monday(). I have downloaded the necessary files from the Datejs website. Upon inspecting with firebug, it appears that my page is successfully loading the content of date.js. Below is the code snippet I am using:
<!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>
Could someone please help me identify what mistake I may be making in my implementation? Thank you!