Skip to content
Advertisement

How to set outerHTML with using of cheerio

could someone answer me, how to properly set outerHTML of element by using cheerio. I have a problem with that.

Example: Let’s say I have an HTML structure below

JavaScript

Parsing it via cheerio and adding some manipulations

JavaScript

As a result I expect to have all divs to be replaced with p. But only spans are replaced with p. I want to get result:

JavaScript

but it’s next

JavaScript

Am I missing something in documentation to the cheerio? Please point me where I’m doing it wrongly.

Regards, Oleh

Advertisement

Answer

Use replaceWith (Replaces matched elements with content) to replace the node:

JavaScript

Using each:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement