Like What You See?
Don't Like What You See?
Let Me Know Below!
Mailbox
let calendar = document.querySelector('.calendar') const month_names = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] isLeapYear = (year) => { return (year % 4 === 0 && year % 100 !== 0 && year % 400 !== 0) || (year % 100 === 0 && year % 400 ===0) } getFebDays = (year) => { return isLeapYear(year) ? 29 : 28 } generateCalendar = (month, year) => { let calendar_days = calendar.querySelector('.calendar-days') let calendar_header_year = calendar.querySelector('#year') let days_of_month = [31, getFebDays(year), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] calendar_days.innerHTML = '' let currDate = new Date() if (month > 11 || month < 0)="" month="currDate.getMonth()" if="" (!year)="" year="currDate.getFullYear()" let="" curr_month="`${month_names[month]}`" month_picker.innerhtml="curr_month" calendar_header_year.innerhtml="year" get="" first="" day="" of="" month="" let="" first_day="new" date(year,="" month,="" 1)="" for="" (let="" i="0;" i=""><= days_of_month[month]="" +="" first_day.getday()="" -="" 1;="" i++)="" {="" let="" day="document.createElement('div')" if="" (i="">= first_day.getDay()) { day.classList.add('calendar-day-hover') day.innerHTML = i - first_day.getDay() + 1 day.innerHTML += ` ` if (i - first_day.getDay() + 1 === currDate.getDate() && year === currDate.getFullYear() && month === currDate.getMonth()) { day.classList.add('curr-date') } } calendar_days.appendChild(day) } } let month_list = calendar.querySelector('.month-list') month_names.forEach((e, index) => { let month = document.createElement('div') month.innerHTML = `
${e}
` month.querySelector('div').onclick = () => { month_list.classList.remove('show') curr_month.value = index generateCalendar(index, curr_year.value) } month_list.appendChild(month) }) let month_picker = calendar.querySelector('#month-picker') month_picker.onclick = () => { month_list.classList.add('show') } let currDate = new Date() let curr_month = {value: currDate.getMonth()} let curr_year = {value: currDate.getFullYear()} generateCalendar(curr_month.value, curr_year.value) document.querySelector('#prev-year').onclick = () => { --curr_year.value generateCalendar(curr_month.value, curr_year.value) } document.querySelector('#next-year').onclick = () => { ++curr_year.value generateCalendar(curr_month.value, curr_year.value) }


2trailertrucker, 2trailertrucker.com and its logo are registered trademarks
Any use of the above without consent of the owner is prohibited.
®2020 All Rights Reserved!