How to close html tags in JavaScript?

2.2k Views Asked by At

I'm taking html content out of my database and displaying it on a page.

Unfortunately these pages often have unclosed html tags and cause problems later when the page is rendered.

I was wondering if there is a JavaScript implementation of something like tidy or htmlpurifier.

Basically some software which can preferably close html tags in a string.

Edit: I'm not in a browser environment (node.js)

3

There are 3 best solutions below

1
On BEST ANSWER

As you tagged your question with :

npm install tidy
5
On

Something like this could work:

function tidy(htmldata) {
    var d = document.createElement('div');
    d.innerHTML = htmldata;
    return d.innerHTML;
}
3
On