I'm looking to incorporate a text area for chat input that is resizable. I would like to have some pre-filled texts in it, such as:
Hi Jhon,
Thanks for contacting us....
I want the text to appear on a new line after the existing content in the textarea. Here's my current code:
$scope.message = "Hi "+$scope.firstName+ ", Thanks for contacting us....... ";
I attempted to use a break tag but it didn't work.
<textarea id="typeMessageBox" placeholder="Write here..." type="text submit" ng-model="message"></textarea>
Any suggestions on how I can achieve this?