User1868852945 posted
With jquery I am appending to the text of my div with the code below and I want the appended text to appear on a new line. I thought the "\a" would do this.
$("#left_panel_line1").text($("#left_panel_line1").text() + " \a " + $("#left_panel_line1").data("capture_date"));
This just makes an "a" appear within the changed text. Is there some control character I can use to accomplish this?
I have also tried <br /> and <p> but similar results.
I do not want to solve this with additional divs because I need this capability in many places in many pages.
Thanks.