I have the non-standard element

<testele></testele>

In every browser except IE, this bit of JavaScript will successfully change the content of the above element

document.getElementsByTagName("testele")[0].innerHTML = 'hi';

However, if I change the <testele> to just a <span> (in the HTML and the JavaScript), it now successfully changes the content of the element in every browser, including IE.

Is there any fix? I have searched around and tried a bunch to no avail.

link|improve this question

Have you tried adding 'document.createElement("testele");', that will define it in IE? – Joe Tuskan Jun 23 '11 at 21:10
Yes, I have, and in multiple ways. It didn't work. – Gus Jun 23 '11 at 21:16
What about 'var els = document.body.all.tags("testele");' – Joe Tuskan Jun 23 '11 at 21:23
Just tried it, didn't work :( I think IE can interpret the element fine, and the problem lies in displaying the content. I know it's possible since Google and Facebook both use it in their "+1" and "like" buttons, but their code is difficult to dissect and it's hard to pinpoint what is doing what. Ugh, this is a really annoying problem. – Gus Jun 23 '11 at 23:45
I'm open to using something other than innerHTML, too. – Gus Jun 23 '11 at 23:57
show 1 more comment
feedback

2 Answers

up vote 1 down vote accepted

Use document.createElement("testele") before it is rendered. This script must be included before the document encouters a <testele>:

http://jsfiddle.net/gilly3/LjwbA/

document.createElement("testele");
window.onload = function() {
    document.getElementsByTagName("testele")[0].innerHTML = 'hi';
};

If you try to do document.createElement("testele") after a <testele> has been parsed by the browser, it's too late.

link|improve this answer
Thanks! I was placing that top line inside the onload function. I'm so happy to finally have this fixed... – Gus Jun 24 '11 at 1:51
feedback

Take a look at innerShiv, a Javascript plugin which aims to solve this.

link|improve this answer
I would prefer to do it without any plugins, especially jQuery, because this code needs to be as compact as possible. – Gus Jun 23 '11 at 19:32
feedback

Your Answer

 
or
required, but never shown

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