Evaluate or Show HTML using Javascript
- by Anita
Hello,
I have this...portion of code in Javascript:
var description = document.createElement('P');
description.className='rssBoxDescription';
description.innerHTML = itemTokens[2];
div.appendChild(description);
I see that description gets the HTML value and displays as plain HTML coding not as HTML processing it shouldbe ... how to convert…