Back to Home
🔄 Auto-Refresh

Dynamic Content Support

Auto-updates TOC when AJAX loads new content

Live Content Detection
Watch TOC update automatically as new sections load
📄 Page Content
Introduction
Getting started with our product...
Installation
Follow these simple steps...
Configuration AJAX Loaded
Customize settings to your needs...
Table of Contents
1. Introduction
2. Installation
3. Configuration
4. Loading...
How It Works
👀
Observe
Monitor DOM
🔍
Detect
Find new H tags
🔄
Rebuild
Update TOC
Perfect For
🔧
Elementor
🎨
Divi
Infinite Scroll
AJAX Sites
{ }
Powered by MutationObserver
Modern browser API for DOM change detection
// Auto-detects new headings
const observer = new MutationObserver();
observer.observe(content, {
  childList: true,
  subtree: true
});