Leveraging the HTML <template> Tag: A Powerful Tool for Dynamic Web Content

Leveraging the HTML <template> Tag: A Powerful Tool for Dynamic Web Content
Photo by Salah Ait Mokhtar / Unsplash

The HTML <template> tag is a valuable yet often overlooked feature in modern web development. Unlike typical HTML elements that render content immediately upon page load, the <template> tag allows you to define reusable HTML structures that are stored for later use, remaining hidden until they are needed. This feature, when paired with JavaScript, enables developers to dynamically insert content into the Document Object Model (DOM) without duplicating code, creating more efficient, flexible, and maintainable web applications.

In this article, we will explore how the <template> tag works, its core use cases, and why it is an essential tool for dynamic content rendering in web development.

What is the HTML <template> Tag?

The <template> tag defines a block of HTML content that is not displayed on the page when it loads. Instead, it acts as a blueprint for future content that can be inserted dynamically using JavaScript. The contents inside the <template> tag, including child elements, remain completely inactive until they are explicitly added to the DOM.

Because the <template> tag allows for structured yet inactive HTML, it is highly useful for situations where developers need to insert repeated or complex content into the DOM without directly writing redundant code.

How the <template> Tag Works

When the page loads, the browser parses the content inside the <template> tag, but it doesn’t render it. The content is essentially stored in memory, waiting to be accessed. You can then use JavaScript to clone the template content and insert it into the live DOM as needed. This makes the <template> tag especially useful for scenarios that require dynamic content loading or repetition.

Here’s a simple example:

<template id="example-template">
  <div class="example">
    <h2>Template Title</h2>
    <p>Template content goes here.</p>
  </div>
</template>

<script>
  const template = document.getElementById('example-template');
  const content = template.content.cloneNode(true);
  document.body.appendChild(content);
</script>

In this example, the template defines a div with a title and some text. JavaScript clones the template’s content and appends it to the document’s body, making it visible on the page.

Key Use Cases for the <template> Tag

The <template> tag is particularly useful in scenarios where you need to insert repeated elements, lazy-load content, or create reusable UI components. Let’s dive into some common use cases.

1. Rendering Repeated Content Dynamically

A common use case is dynamically generating lists or repeated items from a dataset. Instead of writing HTML for each item, the <template> allows you to define the structure once and use JavaScript to populate it with data.

<template id="list-item-template">
  <li class="list-item"></li>
</template>

<ul id="item-list"></ul>

<script>
  const template = document.getElementById('list-item-template');
  const itemList = document.getElementById('item-list');

  const items = ["Item 1", "Item 2", "Item 3"];
  
  items.forEach(item => {
    const clone = template.content.cloneNode(true);
    clone.querySelector('.list-item').textContent = item;
    itemList.appendChild(clone);
  });
</script>

In this example, a template is defined for each list item. JavaScript loops through an array of items, clones the template, updates the content, and appends it to the ul element. This eliminates the need to write repetitive HTML for each list item manually.

2. Lazy Loading Content

The <template> tag can be used to load content only when required, optimizing page performance. For instance, you can define content inside a <template> that gets rendered later based on user interaction.

<template id="lazy-content-template">
  <div>
    <h1>Lazy Loaded Content</h1>
    <p>This content is displayed only when needed.</p>
  </div>
</template>

<button id="load-content-btn">Load Content</button>
<div id="content-container"></div>

<script>
  document.getElementById('load-content-btn').addEventListener('click', () => {
    const template = document.getElementById('lazy-content-template');
    const content = template.content.cloneNode(true);
    document.getElementById('content-container').appendChild(content);
  });
</script>

Here, the content inside the template is loaded only when the user clicks the "Load Content" button, optimizing the initial page load time and reducing the memory footprint.

3. Reusable UI Components

You can use the <template> tag to define reusable UI components, such as cards or modals, that can be populated with different data and inserted multiple times throughout the application.

<template id="card-template">
  <div class="card">
    <h2></h2>
    <p></p>
  </div>
</template>

<script>
  const template = document.getElementById('card-template');
  const cardClone = template.content.cloneNode(true);

  cardClone.querySelector('h2').textContent = "Dynamic Title";
  cardClone.querySelector('p').textContent = "This is a dynamically generated card.";

  document.body.appendChild(cardClone);
</script>

In this scenario, a card template is cloned and customized using JavaScript. This method reduces redundancy and keeps the codebase clean and maintainable by reusing the same template for different data points.

4. Dynamically Inserting Dialogs or Modals

Dialog boxes and modals are ideal candidates for the <template> tag. You can define modal content once and dynamically insert it into the DOM when triggered by user interaction, keeping the DOM uncluttered until the modal is needed.

<template id="modal-template">
  <div class="modal">
    <p>This is a modal window.</p>
    <button>Close</button>
  </div>
</template>

<script>
  const template = document.getElementById('modal-template');
  const modalClone = template.content.cloneNode(true);

  modalClone.querySelector('button').addEventListener('click', () => {
    document.body.removeChild(modalClone);
  });

  document.body.appendChild(modalClone);
</script>

Here, the modal is only added to the DOM when necessary, improving page performance and reducing initial overhead.

5. Custom Elements with Shadow DOM

In the world of Web Components, the <template> tag is frequently used alongside Custom Elements and Shadow DOM to create encapsulated, reusable components.

<template id="custom-element-template">
  <style>
    p { color: blue; }
  </style>
  <p>I'm a custom element!</p>
</template>

<script>
  class MyElement extends HTMLElement {
    constructor() {
      super();
      const shadow = this.attachShadow({ mode: 'open' });
      const template = document.getElementById('custom-element-template');
      shadow.appendChild(template.content.cloneNode(true));
    }
  }

  customElements.define('my-element', MyElement);
</script>

<my-element></my-element>

This example demonstrates the use of the <template> tag to define a reusable custom element with its own style and structure, encapsulated within the Shadow DOM.

Finally

The HTML <template> tag is a powerful yet simple tool that allows developers to define reusable blocks of HTML, which can be dynamically inserted into the DOM when needed. It is especially useful for rendering repeated content, lazy-loading elements, or creating reusable UI components.

By leveraging the <template> tag, developers can write cleaner, more maintainable code that improves both the performance and flexibility of their web applications. If you're looking to enhance the dynamic nature of your websites, the <template> tag is an essential feature to incorporate into your development toolbox.

Support Us

Subscribe to Buka Corner

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
[email protected]
Subscribe