I’m new to JavaScript. Found nice calendar script, but without month switch buttons. I tried a few ways to add “next” and “prev” buttons for month switching, but without any success. Need help! Here is calendar http://test.wowspace.ru/index.html
I’m new to JavaScript. Found nice calendar script, but without month switch buttons. I
Share
There are a few ways to do this I s’pose, but here’s one:
You can make a hidden input for the current month offset and buttons for prev/next months and then modify the JS to accomodate these.
Changes to be made to the calen.js file:
Change
var month = now.getMonth();tovar month = now.getMonth() + parseInt($("#id_month_offset").val());