Planet Knows Accessibility is About People
Aug 13, 2024
Achieving and maintaining accessibility compliance is imperative as approximately 61 million Americans live with disabilities. But only 48 percent of popular government websites fully conform to Section 508 standards which demonstrates there is still much to be done across government to achieve accessibility compliance.
Planet Technologies has worked with both large and small organizations to bring existing digital content into alignment and ensure future content is effectively monitored for compliance, all while creating a mindset that demonstrates a commitment to true public engagement. When you partner with Planet, you’re investing in inclusivity and empowerment for every user.
jQuery(document).ready(function ($) {
function openTabFromHash() {
var hash = window.location.hash.substring(1); // Get hash from URL
if (hash) {
// Find correct tab index
var tabIndex = -1;
if (hash === "in-development") tabIndex = 0;
if (hash === "rolling-out") tabIndex = 1;
if (hash === "launched") tabIndex = 2;
if (hash === "cancelled") tabIndex = 3;
if (tabIndex !== -1) {
$(".et_pb_tabs_controls li").removeClass("et_pb_tab_active");
$(".et_pb_tab").removeClass("et_pb_active_content").hide();
// Activate the correct tab
$(".et_pb_tabs_controls li").eq(tabIndex).addClass("et_pb_tab_active").trigger("click");
$(".et_pb_tab").eq(tabIndex).addClass("et_pb_active_content").show();
}
}
}
openTabFromHash(); // Run on page load
$(window).on("hashchange", function () {
openTabFromHash(); // Run when hash changes
});
});