Forum Moderators: coopster
What i want to do is this
i have a text area
¦------------------------¦
¦
¦
¦
¦------------------------¦
¦BOLD¦
When i pres bold it adds text to the text area (message)
as this
¦------------------------¦
¦ <b> </b>
¦
¦
¦------------------------¦
¦BOLD¦
Any ideas?!
Thanks guys
You mentioned that you posted on this topice before...did you have a look at the solution mentioned [webmasterworld.com]?
That's the best text box editor on a webpage I've ever seen, so it might be good to take a look at what they are doing anyway.
<form>
<TEXTAREA NAME="textarea1" ROWS=10 COLS=10 WRAP=virtual>
</TEXTAREA><BR>
<INPUT TYPE="button" NAME="insert" VALUE="BOLD" onClick="this.form.textarea1.value=this.form.textarea1.value.concat('<b></b>');">
</FORM>
If you would like to put the <b> </b> around something highlighted in the textarea, that would be a totally different ballgame (more complicated)