I´ve got this javascript:
<a href="javascript:addtext('q');">q</a>
When it is clicked it writes text on a textarea.
I went through the encoding and found can do things like this:
This will add a " " (Space)
<a href="javascript:addtext('%20');">Space</a>
And this will add an "á"
<a href="javascript:addtext('á');">á</a>
Now I want to know how to add the return value. (enter)
As far as I know this are URL encondings so maybe you cant tu the enter value couse it makes no sense, but I´m just guessing?
Any ideas or workarounds appreciated!
Thanks in advance!
Trufa