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
|
|
hi ,
using thanks in advace
|
|||
|
|
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:
This, however, will replace all Cheers, |
||||||||
|
|
|
HTML encode your string or use HTML entities such as |
||||||
|
|
|
In HTML, a literal "<" is represented as "<" and a literal ">" is represented as ">". See HTML 4.01 section 5.3.2. |
||
|
|
|
|
I would try this: unescape('abcxyz %3Cabc... |
||
|
|
You need to escape < and > in string. |
||
|
|
`– Boldewyn Jul 8 at 11:31