up vote 20 down vote favorite
8
share [g+] share [fb]

Part of my code I get the OuterHTML propery

"<LI onclick="TabClicked(this, 'SearchName', 'TabGroup1');">Name "

so I can do stuff involing parsing it.

There is no OuterHTML property in javascript on firefox though and I can't find an alternative way to get this string. Ideas?

link|improve this question

From your example it is not clear what would you like to accomplish and where do you use this property. – Darin Dimitrov Nov 9 '09 at 13:15
All I want is the text in the OnClick event as a string, so I can do things with it. – SLC Nov 9 '09 at 13:49
If all you want is the onclick, then use elm.getAttribute("onclick"). – Marius Nov 9 '09 at 14:13
Yeah you'd think so, but heavy googling showed me getattribute was buggy and broken in every browser, and getattributenode was the solution;) – SLC Nov 9 '09 at 15:32
Okay, then use getAttributeNode instead. That still doesn't explain why you want outerHTML (although there are other reasons you might want it, of course) – MatrixFrog Aug 26 '10 at 21:57
show 1 more comment
feedback

9 Answers

Here's the function we use in pure.js:

function outerHTML(node){
    return node.outerHTML || new XMLSerializer().serializeToString(node);
}

To use it the DOM way:

outerHTML(document.getElementById('theNode'));

And it works cross browsers

EDIT: WARNING! There is a trouble with XMLSerializer, it generates an XML(XHTML) string.
Which means you can end up with a tags like <div class="team" /> instead of
<div class="team"></div>
Some browsers do not like it. I had some pain with Firefox 3.5 recently.

So for our pure.js lib we came back to the old and safe way:

function outerHTML(node){
    // if IE, Chrome take the internal method otherwise build one
  return node.outerHTML || (
      function(n){
          var div = document.createElement('div'), h;
          div.appendChild( n.cloneNode(true) );
          h = div.innerHTML;
          div = null;
          return h;
      })(node);
  }
link|improve this answer
Thanks, I used your last method! – Web_Designer May 14 '11 at 16:06
Firefox 11 will support outerHTML natively - see bugzilla.mozilla.org/show_bug.cgi?id=92264 – Nickolay Dec 4 '11 at 21:01
@Nickolay wow... a 10 year request finally answered! Thanks for the update – Mic Dec 5 '11 at 7:51
Thanks! Super helpful! – Stephen Gross Dec 15 '11 at 18:31
feedback

The proper approach (for non-IE browsers) is:

var sOuterHTML = new XMLSerializer().serializeToString(oElement);
link|improve this answer
2  
Pay attention that XMLSerializer generates XML(XHTML) and then do things like <div /> instead of <div></div>. See my answer here. – Mic Dec 2 '10 at 22:53
feedback

If you are willing to use jQuery then it's relatively simple:

$('<div>').append( $(ElementSelector).clone() ).html();

This will get the outer HTML of multiple elements if multiple elements are selected.

link|improve this answer
1  
thanks this worked well for me – superbDeveloper Jan 19 at 18:02
feedback

Try this: http://snipplr.com/view/5460/outerhtml-in-firefox/:

if (document.body.__defineGetter__) { 
   if (HTMLElement) {
      var element = HTMLElement.prototype;
      if (element.__defineGetter__) {
         element.__defineGetter__("outerHTML",
           function () {
              var parent = this.parentNode;
              var el = document.createElement(parent.tagName);
              el.appendChild(this);
              var shtml = el.innerHTML;
              parent.appendChild(this);
              return shtml;
           }
         );
      }
   }
}
link|improve this answer
The problem with that page is that it falls into a discussion with people saying the original example is wrong, so I am quite confused by it. – SLC Nov 9 '09 at 13:44
Actually the guy who says it's wrong later says it does work - have you tried it? – Mark Bell Nov 9 '09 at 14:31
feedback

For the reason that W3C does not include outerHTML property, you just need add following:

if (typeof (HTMLElement) != "undefined" && !window.opera)  
{  
    HTMLElement.prototype._____defineGetter_____("outerHTML", function()  
    {  
        var a = this.attributes, str = "<" + this.tagName, i = 0; for (; i < a.length; i++)  
            if (a[i].specified)  
            str += " " + a[i].name + '="' + a[i].value + '"';  
        if (!this.canHaveChildren)  
            return str + " />";  
        return str + ">" + this.innerHTML + "</" + this.tagName + ">";  
    });  
    HTMLElement.prototype._____defineSetter_____("outerHTML", function(s)  
    {  
        var r = this.ownerDocument.createRange();  
        r.setStartBefore(this);  
        var df = r.createContextualFragment(s);  
        this.parentNode.replaceChild(df, this);  
        return s;  
    });  
    HTMLElement.prototype._____defineGetter_____("canHaveChildren", function()  
    {  
        return !/^(area|base|basefont|col|frame|hr|img|br|input|isindex|link|meta|param)$/.test(this.tagName.toLowerCase());   
    });  
} 
link|improve this answer
feedback

How about something simple like this (not fully tested):

function outerHTML(node) {
    var el;
    if (node.outerHTML) {
        return node.outerHTML;
    } else if (node.parentNode && node.parentNode.nodeType == 1) {
        var el = document.createElement(node.parentNode.nodeName);
        el.appendChild( node.cloneNode(true) );
        return el.innerHTML;
    }
    return "";
}
link|improve this answer
feedback

If all you want is the onclick attribute, then try the following: This assumes that you did not set the event using attachEvent or addEventListener.

elm.getAttribute("onclick");

If you want to make an outerHTML string (just promise not to take it apart after you make it):

function outerHTML(elm){
  var ret = "<"+elm.tagName;
  for(var i=0; i<elm.attributes.length; i++){
    var attr = elm.attributes[i];
    ret += " "+attr.name+"=\""+attr.nodeValue.replace(/"/, "\"")+"\"";
  }
  ret += ">";
  ret += elm.innerHTML+"</"+elm.tagName+">";
  return ret;
}

This function should do the trick in most cases, but it does not take namespaces into account.

link|improve this answer
I remember trying getattribute but I couldn't work out how to get the text out of it... if it's possible it's much neater than outerhtml – SLC Nov 9 '09 at 13:31
Tried your function but it just came back with temp = "<LI undefined="undefined" undefined="undefined" undefined="undefined" undefined="undefined" undefined="undefined" undefined="undefined" undefined="undefined" undefined="undefined"... etc. – SLC Nov 9 '09 at 13:41
Modify this by adding an if (attr) {...} and the undefined attributes will not be enumerated in the result. – Stan Rogers Sep 19 '10 at 15:01
feedback

Try:

(function(ele, html)
{if (typeof(ele.outerHTML)=='undefined')
    {var r=ele.ownerDocument.createRange();
     r.setStartBefore(ele);
     ele.parentNode.replaceChild(r.createContextualFragment(html), ele);
    }
 else
     {ele.outerHTML=html;
     }
})(aEle, aHtml);

for diyism

link|improve this answer
feedback
up vote 0 down vote accepted

Figured it out!

child.getAttributeNode("OnClick").nodeValue;

getAttribute didn't work, but getAttributeNode worked great ;D

link|improve this answer
background info for those interested in "getAttribute didn't work": stackoverflow.com/questions/1833973/… – Nickolay Dec 4 '11 at 21:00
I can't see any specific explanation of why getAttribute is different to getAttributeNode in the link – SLC Dec 6 '11 at 15:09
feedback

Your Answer

 
or
required, but never shown

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