Skip to Content
Keystone SRS Instructors
Keystone SRS Instructors
Home
New Hires
Resources
Schedules
PT-30 Commitment Calendar
PT-17 Weekend Commitment Calendar
PT-17 Holiday Commitment Calendar
FAQs
Training
Contact
0
0
Keystone SRS Instructors
Keystone SRS Instructors
Home
New Hires
Resources
Schedules
PT-30 Commitment Calendar
PT-17 Weekend Commitment Calendar
PT-17 Holiday Commitment Calendar
FAQs
Training
Contact
0
0
Home
New Hires
Resources
Folder: Schedules
Back
PT-30 Commitment Calendar
PT-17 Weekend Commitment Calendar
PT-17 Holiday Commitment Calendar
FAQs
Training
Contact

Get Social at Keystone!

Epic Employee Contact Us Clinic Login

// Event listener to modify the appearance of December 31st link based on user criteria document.addEventListener("DOMContentLoaded", function () { const december31Link = document.querySelector('a[href="https://keystonepros.squarespace.com/store/p/saturday-december-20th-j5gyj-4npp5-6flrh-k22gp-tsze9-89z4w-yxr3f-f58my-x74s3-w448d-a6trn"]'); // Check if the December 31st link exists if (december31Link) { // Add custom styles or logic for December 31st if necessary december31Link.style.fontWeight = "bold"; // Example style change for December 31st link december31Link.style.color = "green"; // Example: Changing the text color to green } }); // Function to get a specific cookie by name function getCookie(name) { let match = document.cookie.match(new RegExp('(^| )' + name + '=([^;]+)')); if (match) { return match[2]; } return null; }