Hi,
I am using HTML Text Area, inside the text area I disply some text in HTML with some span tags inside it. As it is a HTML text area the user cannot see those tags and I do not want the user to edit or delete those tags form the text area.
What is the better way to handel this issue.
Ex: Raw HTML text looks like this
but on the HTML Text area the output would be like below and I do not want the user to mess with span tags.
Any Ideas????
Thanks
Gorge
I am using HTML Text Area, inside the text area I disply some text in HTML with some span tags inside it. As it is a HTML text area the user cannot see those tags and I do not want the user to edit or delete those tags form the text area.
What is the better way to handel this issue.
Ex: Raw HTML text looks like this
Code:
<p>What is your name <span class="fill-in" id="name">_______</span> ?</p>
but on the HTML Text area the output would be like below and I do not want the user to mess with span tags.
Code:
What is your name ________ ?
Any Ideas????
Thanks
Gorge