I have a school project where I need to create a calendar. I used JavaScript loops to generate the calendar and now I want to add events for specific dates, like birthdays, that will appear in a box below the calendar. I'm currently stuck on how to make this happen.
<html>
<head>
<link href="CSS.css" rel="stylesheet" type="text/css">
</head>
<body id="body">
<center>
<button id="Vorige" onclick="VorigeFunc()">Previous</button> <button id="Volgende" onclick="VolgendeFunc()">Next</button>
<div id="div">
<script type="text/javascript" src="Kal.js"> </script>
</div>
</center>
</body>
</html>
...