Basic Calendar View In Pure JavaScript – calendar.js

Category: Date & Time , Javascript | March 18, 2020
Author:TomSpencerLondon
Views Total:6,807 views
Official Page:Go to website
Last Update:March 18, 2020
License:MIT

Preview:

Basic Calendar View In Pure JavaScript – calendar.js

Description:

A dead-simple JavaScript library to render a monthly calendar on the page.

How to use it:

1. Add the stylesheet calendar.css and JavaScript calendar.js to the page.

<link rel="stylesheet" href="calendar.css" />
<script src="calendar.js"></script>

2. Create the HTML for the calendar view. That’s it.

<div class="container-calendar">
  <h3 id="monthAndYear"></h3>
  <div class="button-container-calendar">
    <button id="previous" onclick="previous()">&#8249;</button>
    <button id="next" onclick="next()">&#8250;</button>
  </div>
  <table class="table-calendar" id="calendar" data-lang="en">
    <thead id="thead-month"></thead>
    <tbody id="calendar-body"></tbody>
  </table>
  <div class="footer-container-calendar">
    <label for="month">Jump To: </label>
    <select id="month" onchange="jump()">
      <option value=0>Jan</option>
      <option value=1>Feb</option>
      <option value=2>Mar</option>
      <option value=3>Apr</option>
      <option value=4>May</option>
      <option value=5>Jun</option>
      <option value=6>Jul</option>
      <option value=7>Aug</option>
      <option value=8>Sep</option>
      <option value=9>Oct</option>
      <option value=10>Nov</option>
      <option value=11>Dec</option>
    </select>
    <select id="year" onchange="jump()"></select>
  </div>
  
</div>

You Might Be Interested In:


Leave a Reply