I am trying to do something like this:
<p> Line 1 <br/> Line 2 <br/> </p>
This does not work, but is what i'm trying to do possible?
Edit: more info
i am executing this line of code: $("#textDialogBox").text("test<br />test2");
where #textDialogBox is <p id = "textDialogBox">This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
But when I open the dialog box the
shows up as text, rather than a line break.
<br />(notice the space before the slash) – Konerak Dec 11 '10 at 19:37