Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having a trouble with a mobile addon: it shows me the new elements added by scripting with a different charset of the page. E.g. I can read "cuadrúpedo" but the same word in my plugin show "cuadr¡pedo".

I tryed writing the next line to the beginning of my addon, but it didn't work:

document.getElementsByTagName("html")[0].setAttribute("lang", "es");

Then, I wrote a "converter function" which replaces the special characters with unicode, like the next line, but it didn't work.

str.replace( /ú/g, "/xfa־" );

What can I do?

share|improve this question
Could you post some code of what your extension does? – paa Dec 20 '12 at 12:21
It's a simple addon test. It only insert a box in page with the word "cuadrúpedo". – gal007 Jan 25 at 15:02

1 Answer

Probably it's a matter of text encoding.

Make sure the file that contains the literal "cuadrúpedo" is saved as utf-8, not ansi.

Keep in mind that a few key files must be ansi encoded. These are install.rdf, chrome.manifest and bootstrap.js. In this case use unicode escapes, "cuadr\u00fapedo".

share|improve this answer

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.