In one of my entity forms – I have an embedded html. In this html I have a text box
<textarea id="messageTextArea" rows="7" cols="93"></textarea>
Now I want to be able to show the following text exactly as it appears without using new newline (\n) or any special character
Update:
Current Ticket Status:
Next Step:
--
** If you have any questions, you may find answers to commonly asked questions by visiting our knowledge base:http://help.teksavvy.com/hc/en-us/
------------
I don't want to do this
var txtBoxOtherResource = otherResource.document.getElementById("messageTextArea");
txtBoxOtherResource.value = "Hello [Contact_First_Name],\n\nUpdate:\nCurrent Ticket Status:";
Hasibur Rahman