Atkinson County School Calendar 2024-2025
Atkinson County School Calendar (${yearRange})
Date | Event |
---|---|
${event[0]} | ${event[1]} |
Download School calendar from https://educounty.net
'; content += 'Generated from: ' + window.location.href + '
'; const blob = new Blob(['', content], { type: 'application/msword' }); const url = URL.createObjectURL(blob); const link = document.createElement('a'); link.href = url; link.download = `Atkinson_County_School_Calendar_${yearRange}.doc`; document.body.appendChild(link); link.click(); document.body.removeChild(link); } document.addEventListener('DOMContentLoaded', generateCalendar);