vote up -1 vote down star

I am writing a Firefox extension. When a user highlights and right clicks a selected text on a webpage, the extension captures the text and displays it in a textbox (xul window). The textbox shows the correct formating (like the line breaks, spaces, * for li tags.). But the problem happens when i try to store the textbox value in a variable. The line breaks are gone.

var selText = document.getElementById("txtboxSelectedText").value; //

Can anybody help?

Thanks a lot.

flag

0% accept rate
how are you determining the line breaks are gone? are you sure the line beraks are being lost at that point and not later? – Jonathan Fingland Jun 25 at 14:22
after i fetch var selText = document.getElementById("txtboxSelectedText").value; // i do an alert(selText). – Murali Bala Jun 25 at 15:34
It would be much easier to help you if you posted the minimum code we can use to see the problem. Your problem is obviously not in the line of code you posted and it's really hard to guess where you could have done something wrong or triggered an (unknown) bug. – Nickolay Jul 9 at 14:52

1 Answer

vote up 0 vote down

Is this a real textbox or a rich text editor like tinyMCE or open wysiwyg? In a real textbox there are linebreaks. In the rich text editors, they are really iframes with html content... what looks like a line break is really a <br/> tag.

The reason I suspect this is you can't have li tags (and their associated bullet points) inside a normal textbox

link|flag
It is a normal textbox. The li tags are being shown as *. – Murali Bala Jun 25 at 15:34

Your Answer

Get an OpenID
or

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