I just tried to create a button with multi-line text value,
<input type="button" value="Carriage return separators" style="text-align:center;">
The above piece of code works, however when i try to set the value using jquery it is not working, the inputted value has been rendered as it is. How can we render the inputted text as same as, while we set the value through HTML.?
JS:
$('input').val('Carriage return');