Created
March 16, 2026 18:24
-
-
Save phette23/6ee98789662c53734546167775c482b6 to your computer and use it in GitHub Desktop.
Library Hours Fetch Test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // run in browser console to test website release | |
| fetch("https://libraries-libep.cca.edu/hours/?format=json&library=Simpson", { | |
| "headers": { | |
| "accept": "*/*", | |
| }, | |
| "referrer": "https://library.cca.edu/", | |
| }) | |
| .then(response => response.json()) | |
| .then(data => console.log(data)) | |
| .catch(err => console.error(err)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment