Silly question:
I need to put unicode in the text area:
<textarea name="message">И</textarea>
This works well and the symbol appears as it supposed to. However, when I'm trying to set the value of the text area dynamically through the javascript something like that:
document.form.message.value=И
Then the actual coded string appears, instead of symbol. Is there something to the effect of unicode escape character ?
How can I solve this ?
Thanks.
I need to put unicode in the text area:
<textarea name="message">И</textarea>
This works well and the symbol appears as it supposed to. However, when I'm trying to set the value of the text area dynamically through the javascript something like that:
document.form.message.value=И
Then the actual coded string appears, instead of symbol. Is there something to the effect of unicode escape character ?
How can I solve this ?
Thanks.