I have a page that is part of a backend CRM admin panel. On that page the HTML output comes from some PHP functions that I can't access. And that HTML automatically changes <
and >
into HTML encoded characters.
So there is a div that contains html tags like <br />
that is converted into <b />
So I need to change it back to the HTML characters using only jQuery:
<
to <
>
to >
Is there a jQuery script I can use to replace those special characters with the corresponding symbols? This will mean my HTML tags will actually work and the HTML will being displayed properly on the screen?
I've tried removewith()
but i can't make it work.
ADDED: The div that im trying to modify is this
<div style="font-size: 11px; width: 90%; font-family: Tahoma;" id="cotiz"><strong>Valuación</strong> de InfoAuto: 35.500,00<br />
Cotización Seleccionada: Ninguna<br />
Allianz, Responsabilidad Civil: $205,25<br />
Allianz, Terceros Completos: $278,85 </div>
.text()
to insert the data instead of.html()
? – Janettajanette