It has the following code in html:
<div id="lista">
<p>Antonio Carlos Almeida Filhos</p>
</div>
How could I exclude this paragraph only from this div
without deleting other paragraphs on the page.
We can use $("p").remove()
, but in that case you would be removing all the paragraphs on the page.