<title>
and <meta name="description">
dynamically.document.querySelector
to fetch and update the title and description based on Collection List elements.You can dynamically update the meta title and meta description on a Webflow site using JavaScript by selecting and modifying the <title>
and <meta name="description">
elements. However, these changes will not affect SEO since search engines primarily index the initial HTML without JavaScript modifications.
tag section of your Webflow Page Settings or inside an Embed element on the page.
document.addEventListener("DOMContentLoaded", function () { // Fetch dynamic content from a Collection List item let dynamicTitle = document.querySelector(".dynamic-title")?.textContent; let dynamicDescription = document.querySelector(".dynamic-description")?.textContent; // Update the meta title if (dynamicTitle) { document.title = dynamicTitle; } // Update the meta description let metaDescriptionTag = document.querySelector("meta[name='description']"); if (metaDescriptionTag && dynamicDescription) { metaDescriptionTag.setAttribute("content", dynamicDescription); }});
.dynamic-title
and .dynamic-description
with the actual class names used in your Collection List.You can use JavaScript to dynamically update the meta title and meta description, but this doesn't impact SEO because search engines index the original static content. If SEO is a concern, configure meta tags directly in Webflow’s SEO Settings.