Did you know HTML elements can be editable?

β€” 3 minute read

permalink

This is one of the HTML options you don't see often, but are actually really cool.

There is an HTML attribute called contenteditable, and it allows HTML elements to become editable πŸ™Š.

Let me show you how it looks on this Codepen. (Click any text!)

See the Pen Did you know HTML elements can be editable? by Chris Bongers (@rebelchris) on CodePen.

HTML contenteditable permalink

We can simply make an element editable by adding the contenteditable tag.

<div class="container">
<h1 contenteditable="true">Welcome click me 🎯</h1>
<p contenteditable="true">
Did you know you can click me to edit my content?<br />
Even big paragraphs πŸ‘€
</p>
<a contenteditable="true" href="#">View the full article</a>
</div>

It can have three values:

  • contenteditable="true" ~ We can change the content
  • contenteditable="false" ~ Not able to change it
  • contenteditable="inherit" ~ Whatever the parent has

Capturing changes in JavaScript permalink

This is cool but it doesn't do much on its own, so we can use JavaScript to capture the changes.

Let's bind an event listener to the input event for each contenteditable tag.

const contents = document.querySelectorAll('[contenteditable]');

for (let content of contents) {
content.addEventListener('input', function() {
console.log('input changed to: ' + content.innerHTML);
});
}

Browser Support permalink

Since this is a native HTML tag, it has amazing support!

Contenteditable support

Thank you for reading, and let's connect! permalink

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter