Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
Define "does not work". This should work fine (introducing line breaks after Line 1 and Line 2. – Adam Wright Dec 11 '10 at 19:35
This should work fine, although in some older browsers, you might need to do <br /> (notice the space before the slash) – Konerak Dec 11 '10 at 19:37
sorry, i thought the issue was with the html, maybe it is not. I'm posting more info now. – kralco626 Dec 11 '10 at 19:38
Yes, it should work fine. – Rafid Dec 11 '10 at 19:38
added more info and changed my tags as this seems to have something to do with jquery – kralco626 Dec 11 '10 at 19:42

1 Answer

up vote 22 down vote accepted

Have this instead:

$("#textDialogBox").html("test<br/>test2");

The text() method of jQuery will "destroy" any HTML given to it, and this includes <br /> as well.

share|improve this answer
1  
sweeeeeeeeeeeet – kralco626 Dec 11 '10 at 19:43
worked perfect! – kralco626 Dec 11 '10 at 19:44
@kralco cheeers glad it's working :) – Shadow Wizard Dec 11 '10 at 19:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.