TEASE Conference (R)

Join us for the Annual Special Education Conference that will focus on the Science of Reading and Writing for Students with Disabilities. The participants will choose from breakout sessions designed for special education directors/administrators, special education teachers (elementary, secondary, and those who teach alternate standards), and related service providers.

More Information

Date
Jul 27 - 30 2026
Expired!
Time
All Day
/** * Elementor Accordion Anchor Fix * Fixes anchor links (#anchor-id) that point to content hidden inside * a collapsed Elementor Accordion tab. Opens the correct accordion item * and scrolls to it smoothly. */ add_action( 'wp_footer', function () { ?> ( () => { const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); } )();