This is a very strange problem that I struggled with for several days. At first I thought it was connected with something in our application, but I split it into the simplest html page, and this is still happening. Basically, at any time I add a tag to the html page after it is displayed as a value. <textarea></textarea>
fixes the problem, but I don’t understand why. I'm at a loss here, it must be something really simple that I just don’t know.
In the following example, paragraph tags are displayed as the value of the text area.
I am using IE8.
<html> <head> <title>About</title> </head> <body> <textarea/> <p align="center"> test </p> <p align="left"> test </p> </body>
tessa source share