JKey Roofing & Construction is committed to ensuring that our website is accessible to all visitors, including individuals with disabilities. We strive to provide a welcoming online experience for everyone, regardless of ability.
Accessibility Standards
We aim to conform to the Web Content Accessibility Guidelines (WCAG) 2.1, Level AA. These guidelines help make web content more accessible to people with a wide range of disabilities, including visual, auditory, physical, speech, cognitive, language, learning, and neurological disabilities.
Our Ongoing Efforts
We are continuously working to improve the accessibility of our website. Our efforts include:
Using semantic HTML to ensure proper document structure
Providing alternative text for images
Ensuring sufficient color contrast throughout the site
Making all functionality available via keyboard navigation
Using clear and consistent navigation
Testing with assistive technologies
Third-Party Content
Our website may include content provided by third parties. While we encourage our partners and vendors to provide accessible content, we may not always be able to control the accessibility of third-party content.
Feedback & Contact
If you experience any difficulty accessing any part of our website, or if you have suggestions on how we can improve accessibility, please contact us. We take your feedback seriously and will do our best to address your concerns promptly.
function trackCTAClick(element, event) {
var eventData = JSON.parse(element.getAttribute('data-ga-event'));
// Send GA4 event
if (typeof gtag === 'function') {
gtag('event', 'cta_click', eventData);
}
var is_popup = element.getAttribute('data-cta-type');// Check if this is a popup CTA
if (is_popup === 'Popup' || eventData.cta_type === 'Popup') {
event.preventDefault();
var modalTarget = element.getAttribute('data-modal-target');
var modalElement = document.getElementById(modalTarget);
if (modalElement) {
console.log('Toggle Popup:');
// Fallback to toggle class
modalElement.classList.toggle('hidden');
modalElement.classList.toggle('flex');document.body.classList.toggle('overflow-hidden');
}
}
}