'Preserve in Cheerio .text()
I need to get the text with tags.
const $ = cheerio.load(
'<textarea id="ir1" name="ir1" class="new_tarea" style="height:540px"><p>abcdefg123123 </p></textarea>'
);
const extract = $("#ir1").text();
console.log(extract)
** the <p> tag is the text for not a html.
below is the extract
<p>abcdefg123123 </p>
but I want to get this such as
<p>abcdefg123123 </p>
How to get with tag?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
