vote up 0 vote down star

So I know I can write my own HTML-encoding function like this:

function getHTMLEncode(t) {
    return t.toString().replace(/&/g,"&amp;").replace(/"/g,"&quot;").replace(/</g,"&lt;").replace(/>/g,"&gt;");
}

But I was wondering if there were any native facility for this that is available to XPCOM components. I'm writing a component, not an overlay, so I don't have a DOM around to do tricks like creating a DOM element and setting its innerHTML.

flag

64% accept rate

5 Answers

vote up 0 vote down

I use the following functions to encode and decode HTML Entities:

function htmlEncode(input){
  var t = document.createTextNode(input),
      e = document.createElement('div');
  e.appendChild(t);
  return e.innerHTML;
}


function htmlDecode(input){
  var e = document.createElement('div');
  e.innerHTML = input;
  return e.childNodes[0].nodeValue;
}
link|flag
vote up 0 vote down

In theory you could create an XML document, use that to create an HTML div, set its text content to your unencoded string and read off its innerHTML. Note that this only encodes lt, gt and amp characters, not quot.

link|flag
vote up 0 vote down check

The answer appears to be no - there is no built in function in Firefox to HTML-encode a string from an XPCOM component.

link|flag
vote up -1 vote down
function encode2HTML(str) {
    var b = document.createElement('b');
    if (b.innerText === undefined) {
        b.textContent = str;
    } else {
        b.innerText = str;
    }
    return b.innerHTML;
}

The browser should know how to encode your text. Please test this before using. :)

link|flag
vote up -2 vote down

use "escape()"

http://www.w3schools.com/jsref/jsref_escape.asp

link|flag
1  
No, HTML escaping, not URL escaping. Like the code snippet I posted. – BRH Feb 23 at 3:43
escape with encode strings and that includes html and urls. What does your question have to do with FireFox? – Hunter Daley Feb 23 at 15:36
1  
escape() isn't even right for URL-escaping (encodeURIComponent is more usually the right thing there). A good rule of thumb is: never use escape(). – bobince Feb 24 at 2:02
bobince, it's encodeURI – Hunter Daley Feb 24 at 18:50

Your Answer

Get an OpenID
or

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