<head>
.You can automatically generate a Table of Contents (TOC) in Webflow for your blog posts or CMS items using Webflow’s built-in elements and a little custom JavaScript. Here’s how to do it without third-party plugins or complex code.
Go to Page Settings > Custom Code and place this before </body>
:
```javascript
document.addEventListener("DOMContentLoaded", function() {
let tocContainer = document.getElementById("toc");
let headings = document.querySelectorAll(".blog-content h2, .blog-content h3");
if (tocContainer && headings.length) { let tocList = document.createElement("ul"); headings.forEach((heading, index) => { let id = heading.id || ("heading-" + index); heading.id = id; let listItem = document.createElement("li"); let link = document.createElement("a"); link.href = "#" + id; link.textContent = heading.textContent; listItem.appendChild(link); tocList.appendChild(listItem); }); tocContainer.appendChild(tocList);}
});
```
Modify the .blog-content
selector if your Rich Text Block has a different class.
<style>
in the <head>
section:This method dynamically generates a Table of Contents inside a designated TOC section by scanning your blog’s headings and automatically creating anchor links. It works without third-party plugins and only requires lightweight JavaScript.