During this on-demand session, we will examine the delicate balance between continuous use and preventing emergency notification fatigue.
/* 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();});
});