vote up 2 vote down star

When you get the innerHTML of a DOM node in IE, if there are no spaces in an attribute value, IE will remove the quotes around it, as demonstrated below:

<html>
    <head>
        <title></title>
    </head>
    <body>
        <div id="div1"><div id="div2"></div></div>
        <script type="text/javascript">
            alert(document.getElementById("div1").innerHTML);
        </script>
    </body>
</html>

In IE, the alert will read:

<DIV id=div2></DIV>

This is a problem, because I am passing this on to a processor that requires valid XHTML, and all attribute values must be quoted. Does anyone know of an easy way to work around this behavior in IE?

flag

5 Answers

vote up 5 vote down check

IE innerHTML is very annoying indeed. I wrote this function for it, which may be helpfull? It quotes attributes and sets tagnames to lowercase. By the way, to make it even more annoying, IE's innerHTML doesn't remove quotes from non standard attributes.

function ieInnerHTML(obj) {
 var zz = obj.innerHTML,
     z = 
   zz.match(/<\/?\w+((\s+\w+(\s*=\s*(?:".*?"|'.*?'|[^'">\s]+))?)+\s*|\s*)\/?>/g);
  if (z){
    for (var i=0;i<z.length;i++){
      var y, zSaved = z[i];
      z[i] = z[i].replace(/(<?\w+)|(<\/?\w+)\s/,
                          function(a){return a.toLowerCase();});
      y = z[i].match(/\=\w+[?\s+|?>]/g);
       if (y){
        for (var j=0;j<y.length;j++){
          z[i] = z[i].replace(y[j],y[j]
                     .replace(/\=(\w+)([?\s+|?>])/g,'="$1"$2'));
        }
       }
       zz = zz.replace(zSaved,z[i]);
     }
   }
  return zz;
 }
link|flag
I haven't tested this, but I'm going to select it as the accepted answer anyway, because it comes closest to being a self-contained solution to the question. – Augustus Aug 6 at 0:22
Ok, thanx. In my tests it worked, but didn't test it thourougly. Out of curiosity: who think this answer deserves a -1 score and why? – KooiInc Aug 6 at 14:36
I remember when I had to work with a huge legacy application that all logic was using innerHTML. I remember the problem it had since in one of the examples, using innerHTML in a tbody tag is readonly (as some other elements). – GmonC Sep 17 at 4:02
+1 Nicely done. What would be even nicer is lowercasing style attributes as well, such as style="DISPLAY: none". – Crescent Fresh Oct 1 at 11:03
Wow. IE is a really, really stupid browser. – leeand00 Oct 8 at 20:20
vote up 0 vote down

I've tested this, and it works for most attributes, except those that are hyphenated, such as class=day-month-title. It ignores those attributes, and does not quote them.

link|flag
Also, I had to change the regex, to: /<\/?\w+((\s+\w+(\s*=\s*(?:".*?"|'.*?'|[^\'\">\s]+))?)+\s*|\s*)\/?>/g before it would work. – joe Sep 17 at 3:41
vote up 1 vote down

Ah, the joy of trying to use XHTML in a browser that doesn't support it.

I'd just accept that you are going to get HTML back from the browser and put something in front of your XML processor that can input tag soup and output XHTML — HTML Tidy for example.

link|flag
This is actually the solution I ended up going with. I opted to use the lxml Python library. – Augustus Aug 6 at 0:21
vote up -3 vote down

did you tried with jquery ?

alert($('#div1').html());
link|flag
Yup. jQuery uses innerHTML to return its value, and they haven't fixed this problem yet. I took jQuery out just to make it more clear where the problem lies. – Augustus Aug 5 at 8:13
vote up 0 vote down

I ran into this exact same problem just over a year ago, and solved it using InnerXHTML, a custom script written by someone far smarter than I am. It's basically a custom version of innerHTML that returns standard markup.

link|flag
Yeah, I've looked at this library, but I would rather not use it because it is licensed under the Creative Commons Attribution-Share Alike 3.0 License. – Augustus Aug 5 at 8:15
Fair enough. My employer at the time I used it was fine with it, but I understand that's not always the case. – Scottie Aug 5 at 8:27

Your Answer

Get an OpenID
or

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