kthornbloom / Monthly

A jQuery based responsive calendar
http://kthornbloom.com/monthly/
Other
316 stars 108 forks source link

Outdated Jquery Function on Load #98

Open johncwaters opened 2 years ago

johncwaters commented 2 years ago

Ran into an issue where jquery 3.6.0 wouldn't accept the function to load the calendar on the page. When calling the calendar replace in index.html script:

$(window).load(function() {

        $('#mycalendar').monthly({

with

$(window).on('load', function () {

    $('#mycalendar').monthly({

Just putting out there just in case anyone runs into it.