You want to create a modal view for glossary terms in Webflow, pulling each term’s content dynamically from a CMS Collection. Here's how to do this effectively.
For each link/button in the Collection List:
Add a custom attribute like data-glossary-id
and bind it to the CMS Item ID, slug, or use data-term
/ data-definition
with the actual text.
In the modal:
Add unique element IDs or use class names strategically for targeting with JavaScript.
Set a click interaction on the link/button to:
Run custom code (more below) or open the modal.
Add an interaction to the modal close button that hides the modal again.
Go to Page Settings > Before
tag and add a small script:
Use JavaScript to:
Example inline logic (not full code per Webflow guidelines): When a button with data-term="API"
and data-definition="A set of functions…"
is clicked, the script sets modal heading and text using those values, then shows the modal.
loading="lazy"
for modal images if present.To create a glossary term modal using CMS content, bind a Collection List to your Glossary CMS, add modal UI elements to the page (not inside the list), and use custom JavaScript to dynamically fill and open the modal based on click events. This allows each term to trigger a common modal using its CMS-provided content.