I have two JavaScript classes/files, and two html pages:
-month.html
-month.js
-day.html
-day.js
I am trying to figure out how to pass a value from one html/js to the other. For instance, when a user clicks on a date in the month.html, I would like to pass that value from month.js to day.js and then display it on the day.html. Is there a quick way that I can just pass a date to the day.html and then work with it in day.js?
Thanks!