Forum Moderators: open

Message Too Old, No Replies

value with teaxarea

value with teaxarea

         

xbl01234

4:02 am on Dec 19, 2006 (gmt 0)

10+ Year Member



Hello;
i want to have a textarea box come out with value which it can be edited by user.

but my code could not do it, could you tell why?

<form>
<TEXTAREA name="content" clos=50 rows=10 value="i want have some sentence here for edit" onkeyup="this.value = this.value.slice(0, 200)"></TEXTAREA>
</textarea>
</form>

eelixduppy

4:16 am on Dec 19, 2006 (gmt 0)



Replace it with this:

<TEXTAREA name="content" cols="50" rows="10" onkeyup="this.value = this.value.slice(0, 200)">i want have some sentence here for edit</TEXTAREA>

Good luck :)

xbl01234

4:34 am on Dec 19, 2006 (gmt 0)

10+ Year Member



Thanks a lot