There is a formatted txt file that my java program reads and sends over the contents as a string to front-end. The string that is sent to front end looks like this:
var result = "This is the result.\nIt contains some details\n\nDetails are as follows\nabc,xyz"
In the frontend, This data must be written to a div in the following format:
This is the result.
It contains some details
Details are as follows
abc,xyz
Using the following code did not work:
$("#divId).html(result);
Alternates like val(), text() did not work either. How can I make the browser write the new lines in the div when displaying the result?
` – Ibrahim Khan Sep 30 '16 at 18:38
`, not a newline. – brianpck Sep 30 '16 at 18:39