I am passing a string containing HTML tags (center, ul, etc) to a function which then places it in a div, span or p innerHTML. This works great in all browsers but IE, which displays nothing. I tracked the problem the the tags, because plain text does display in IE.
I am using IE 9. The code is a little long for posting, but here is the idea:
str='<center>Some text</center>';
displayText('divId',str);
function displayText(id,str)
{ document.getElementById(id).innerHTML=str; }
Sorry everyone. I found that I could not set the innerHTML of a [P] element. I changed it to a [span] and it worked.
<div>, will work in IE. – Pointy Jun 19 '11 at 19:23