vote up 0 vote down star

hi , using obj.innerHTML = "abcxyz <abcxyz@ttt.com>" getting ouput: abcxyz the rest part is getting ignored because of angle bracket(<>). so how to achieve the same.

thanks in advace

flag

19% accept rate
The brackets are missing. Try backticks: ` – Boldewyn Jul 8 at 11:31

5 Answers

vote up 8 vote down

Actually, the content is still there, but the browser interprets it as unknown tag, that is, it does not display anything. Look at the generated page source (in FF, e.g., mark all text and use "Selection source" from the context menu).

Try quoting the brackets:

obj.innerHTML = "abcxyz <abcxyz@ttt.com>".replace (/</g, "&lt;")

This, however, will replace all <. If you want to embed other HTML, too, you will have to keep track on what you already encoded and what not.

Cheers,

link|flag
since i have to replace both the brackets(<>) so we cannt use some regular expression to replace the both – Abhimanyu Jul 8 at 12:36
Try: obj.innerHTML = "abcxyz <abcxyz@ttt.com>".replace (/</g, "&lt;").replace (/>/g, "&gt;") – robertc Jul 8 at 12:42
Actually you don't really need to replace the > as well, the HTML parser is savvy enough to keep it allone, if it is not preceeded by an <. – Boldewyn Jul 8 at 13:02
s/allone/alone/ – Boldewyn Jul 8 at 13:03
vote up 2 vote down

HTML encode your string or use HTML entities such as &lt;

link|flag
... and there is also a builtin javascript function for that. – Hippo Jul 8 at 13:19
... that is named how? escape() does URL encoding, if you had that in mind. – Boldewyn Jul 8 at 14:38
I agree, don't think there's a built in function. There is a method in prototype.js: prototypejs.org/api/string/escapeHTML – robertc Jul 8 at 14:56
vote up 1 vote down

In HTML, a literal "<" is represented as "&lt;" and a literal ">" is represented as "&gt;". See HTML 4.01 section 5.3.2.

link|flag
vote up 1 vote down

I would try this: unescape('abcxyz %3Cabc...

link|flag
How could that be of use? in you unescape it, you again have the < in your innerHTML string. – Boldewyn Jul 8 at 14:39
You are right. Sorry. I misunderstood the problem. – G Berdal Jul 9 at 10:43
vote up 0 vote down

You need to escape < and > in string.

link|flag

Your Answer

Get an OpenID
or

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