evergreean
Technical User
I have a translation filter (changing Microsoft Word Bullet into a bullet using an <li> tag for my MX pages) where it works great.
The only issue I have is the user sees the <li> tag in the update page in the textarea part. I now have the word "BULLET" instead of the <li> tag showing up. I really want to put in an actual bullet. I dont want to use the º symbol because it comes out as "º" in the web page so it doesn matter if I use that or the <li> tag because the user never sees the actual bullet in the textarea tag. Anyway to put a bullet to show up in the textarea?
The only issue I have is the user sees the <li> tag in the update page in the textarea part. I now have the word "BULLET" instead of the <li> tag showing up. I really want to put in an actual bullet. I dont want to use the º symbol because it comes out as "º" in the web page so it doesn matter if I use that or the <li> tag because the user never sees the actual bullet in the textarea tag. Anyway to put a bullet to show up in the textarea?
Code:
<cfset teststring = Replace(test,"<li>","BULLET","ALL")>
<textarea name="test" wrap="soft">#teststring#</textarea>