Planet Technologies has achieved our Specialization for Modernize Endpoints from Microsoft in recognition of our deep knowledge, extensive experience, and proven success in delivering holistic management solutions designed for the hybrid workplace. Modernizing endpoints is crucial for enhancing cybersecurity and ensuring that organizations can adapt to evolving threats and technology, ultimately safeguarding their digital assets and sensitive data. Contact us at [email protected] to learn how you can solve your next technology challenge using what you already own.
Planet Technologies Achieves Modernize Endpoints Specialization
Nov 3, 2023

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
});
});