Join us at the 2024 Axis Kickoff Event! This event focuses on the needs of education customers and how leading mass notification providers utilize trends and technology to help create smarter, safer schools. We hope to see you there!
/* Script to enforce expanding text sections. MUST be loaded after jquery (see above) */
$(document).ready(function(){
$('.markdown-block .sqs-block-content h2').css('cursor','pointer');
$(".markdown-block .sqs-block-content h2").nextUntil("h2").slideToggle();
$(".markdown-block .sqs-block-content h2").click(function() {$(this).nextUntil("h2").slideToggle();});
});