I'm trying to get the HTML of a selected object with jQuery. I am aware of the .html() function; the issue is that I need the HTML including the selected object (a table row in this case, where .html() only returns the cells inside the row).

I've searched around and found a few very ‘hackish’ type methods of cloning an object, adding it to a newly created div, etc, etc, but this seems really dirty. Is there any better way, or does the new version of jQuery (1.4.2) offer any kind of outerHtml functionality?

link|improve this question

79% accept rate
2  
It is outrageous that jQuery does not have means to do such a thing. I need this too. – Josef Sábl Apr 19 '10 at 14:27
4  
I've posted a feature request, with a reference to this thread, and the initial response was positive. bugs.jquery.com/ticket/8142 – mindplay.dk Feb 2 '11 at 15:20
Oh wow. So something I noticed that wasn't in jQuery, might actually make it into a future jQuery by this StackOverflow post. I hope so. That would be cool, and the .outerHTML (or something like it) feature is just plain handy. – Volomike Mar 3 '11 at 5:23
1  
$("#selectorid").attr('outerHTML') will help you – Tuscan Jun 28 '11 at 5:14
6  
To save some people a few seconds of their time from trying out Ulhas Tuscano's solution, it doesn't work. – Dave Oct 27 '11 at 18:07
feedback

15 Answers

up vote 20 down vote accepted

This site seems to have a solution for you : jQuery: outerHTML | Yelotofu

jQuery.fn.outerHTML = function(s) {
    return s
        ? this.before(s).remove()
        : jQuery("<p>").append(this.eq(0).clone()).html();
};
link|improve this answer
I saw this but was trying to avoid it because it seemed to hackish and like there should have been a better way, but it works well. Thanks. – Ryan Mar 10 '10 at 22:24
7  
$('[selector]')[0].outerHTML – drogon Apr 3 at 19:20
2  
$('div').clone().wrap('<div>').parent().html() semantic – GRIGORE-TURBODISEL Apr 14 at 15:17
feedback

No need to generate a function for it. Just do it like this:

$('A').each(function(){
    var s = $(this).clone().wrap('<p>').parent().html();
    console.log(s);
});

(Your browser's console will show what is logged, by the way. Most of the latest browsers since around 2009 have this feature. On Firefox, you have to install Firebug.)

The magic is this on the end:

.clone().wrap('<p>').parent().html();

The clone means you're not actually disturbing the DOM. Run it without it and you'll see P tags inserted before/after all hyperlinks (in this example), which is undesirable. So, yes, use .clone().

The way it works is that it takes each A tag, makes a clone of it in RAM, wraps with P tags, gets the parent of it (meaning the P tag), and then gets the innerHTML property of it.

EDIT: Took advice and changed DIV tags to P tags because it's less typing and works the same.

link|improve this answer
+1 for explaining precisely what you're doing and how it works! – mindplay.dk Feb 2 '11 at 13:40
1  
I'm going to have to remember this pattern. – Sean Mar 3 '11 at 19:18
Awesome. Very simple solution. – methodin Aug 19 '11 at 19:56
9  
I wonder why the jQuery team doesn't add a outerHtml() method? – Donny V. Jan 19 at 14:11
2  
.clone().wrap('<p>').parent().html(); is shorter – Uğur Gümüşhan Apr 1 at 0:15
show 3 more comments
feedback
(function($) {
  $.fn.outerHTML = function() {
    return $(this).clone().wrap('<div></div>').parent().html();
  }
})(jQuery);

And use it like this: $("#myTableRow").outerHTML();

link|improve this answer
Thanks for converting my suggestion to an extension. Ridiculous that jQ doesn't have this built in already.. – jessica Nov 15 '10 at 6:35
3  
Small problem with this solution: you need to clone() before you wrap(), otherwise you're leaving the extra wrapping <div> in the document. – mindplay.dk Feb 2 '11 at 14:08
Thanks, mindplay.dk -- I edited the code to incorporate your suggestion.. good catch. :) – jessica Mar 23 '11 at 18:00
feedback

I agree with Arpan (Dec 13 '10 5:59).

His way of doing it is actually a MUCH better way of doing it, as you dont use clone. The clone method is very time consuming, if you have child elements, and nobody else seemed to care that IE actually HAVE the outerHTML attribute (yes IE actually have SOME useful tricks up its sleeve).

But I would probably create his script a bit different:

$.fn.outerHTML = function() {
    $t = $(this);
    if( "outerHTML" in $t[0] )
    { return $t[0].outerHTML; }
    else
    {
        var content = $t.wrap('<div></div>').parent().html();
        $t.unwrap();
        return content;
    }
}
link|improve this answer
This worked perfectly for me. Due to a bug with clone() and textarea's, I needed a non-clone solution, and this was spot on. – Shpigford Jul 6 '11 at 19:43
1  
+1 for using native outerHTML where available, since it's supported by Chrome in addition to Internet Explorer. – Andy E Sep 7 '11 at 15:23
OK! I didn't know other browsers supported the outerHTML attribute. But now I know. Thanx :) – Tokimon Sep 13 '11 at 13:18
feedback

To be truly jQuery-esque, you might want outerHTML() to be a getter and a setter and have its behaviour as similar to html() as possible:

$.fn.outerHTML = function (arg) {
    var ret;

    // If no items in the collection, return
    if (!this.length)
        return typeof val == "undefined" ? this : null;
    // Getter overload (no argument passed)
    if (!arg) {
        return this[0].outerHTML || 
            (ret = this.wrap('<div>').parent().html(), this.unwrap(), ret);
    }
    // Setter overload
    $.each(this, function (i, el) {
        var fnRet, 
            pass = el,
            inOrOut = el.outerHTML ? "outerHTML" : "innerHTML";

        if (!el.outerHTML)
            el = $(el).wrap('<div>').parent()[0];

        if (jQuery.isFunction(arg)) { 
            if ((fnRet = arg.call(pass, i, el[inOrOut])) !== false)
                el[inOrOut] = fnRet;
        }
        else
            el[inOrOut] = arg;

        if (!el.outerHTML)
            $(el).children().unwrap();
    });

    return this;
}

Working demo: http://jsfiddle.net/AndyE/WLKAa/

This allows us to pass an argument to outerHTML, which can be

  • a cancellable function — function (index, oldOuterHTML) { } — where the return value will become the new HTML for the element (unless false is returned).
  • a string, which will be set in place of the HTML of each element.

For more information, see the jQuery docs for html().

link|improve this answer
feedback

I used Jessica's solution (which was edited by Josh) to get outerHTML to work on Firefox. The problem however is that my code was breaking because her solution wrapped the element into a DIV. Adding one more line of code solved that problem.

The following code gives you the outerHTML leaving the DOM tree unchanged.

$jq.fn.outerHTML = function() {
    if ($jq(this).attr('outerHTML'))
        return $jq(this).attr('outerHTML');
    else
    {
    var content = $jq(this).wrap('<div></div>').parent().html();
        $jq(this).unwrap();
        return content;
    }
}

And use it like this: $("#myDiv").outerHTML();

Hope someone finds it useful!

link|improve this answer
1  
Just use .clone like @mindplay suggests in his comment- it's easier – Yarin Mar 23 '11 at 15:50
Prefer Tokimon's answer – Muhd Oct 14 '11 at 22:25
feedback

I believe that currently (5/1/2012), all major browsers support the outerHTML function. It seems to me that this snippet is sufficient. I personally would choose to memorize this:

// Gives you the DOM element without the outside wrapper you want
$('.classSelector').html()

// Gives you the outside wrapper as well
$('.classSelector')[0].outerHTML
link|improve this answer
feedback

To make a FULL jQuery plugin as .outerHTML, add the following script to any js file and include after jQuery in your header:

(function($) {
    if (!$.outerHTML) {
        $.extend({
            outerHTML: function(ele) {
                var $return = undefined;
                if (ele.length === 1) {
                    $return = ele[0].outerHTML;
                }
                else if (ele.length > 1) {
                    $return = {};
                    ele.each(function(i) {
                        $return[i] = $(this)[0].outerHTML;
                    })
                };
                return $return;
            }
        });
        $.fn.extend({
            outerHTML: function() {
                return $.outerHTML($(this));
            }
        });
    }
})(jQuery);

This will allow you to not only get the outerHTML of one element, but even get an object return of multiple elements at once! and can be used in both jQuery standard styles as such:

$.outerHTML($("#eleID")); // will return outerHTML of that element and is 
// same as
$("#eleID").outerHTML();

For multiple elements

$("#firstEle, .someElesByClassname, tag").outerHTML();
link|improve this answer
feedback

node.cloneNode() hardly seems like a hack. You can clone the node and append it to any desired parent element, and also manipulate it by manipulating individual properties, rather than having to e.g. run regular expressions on it, or add it in to the DOM, then manipulate it afterwords.

That said, you could also iterate over the attributes of the element to construct an HTML string representation of it. It seems likely this is how any outerHTML function would be implemented were jQuery to add one.

link|improve this answer
feedback

Note that Josh's solution only works for a single element.

Arguably, "outer" HTML only really makes sense when you have a single element, but there are situations where it makes sense to take a list of HTML elements and turn them into markup.

Extending Josh's solution, this one will handle multiple elements:

(function($) {
  $.fn.outerHTML = function() {
    var $this = $(this);
    if ($this.length>1)
      return $.map($this, function(el){ return $(el).outerHTML(); }).join('');
    return $this.clone().wrap('<div/>').parent().html();
  }
})(jQuery);

Edit: another problem with Josh's solution fixed, see comment above.

link|improve this answer
Most jQuery "getter" methods return data for the first element only, so it would make more sense to match this behaviour. – Andy E Sep 7 '11 at 15:16
I think I stated clearly why it works this way? It would make for ugly/complicated code when you have a list of elements - if for some reason you want the markup for only the first element, just use :first in your selector. – mindplay.dk Sep 7 '11 at 20:29
Sure, just like you could just use map with everyone else's solution to get the HTML of multiple elements. All I was saying is that it's more consistent to match the behaviour of the standard jQuery methods. – Andy E Sep 7 '11 at 22:39
feedback

Anothe similar solution with added remove() of the temporary DOM object.

link|improve this answer
feedback

You can find a good .outerHTML() option here http://darlesson.com/jquery/outerhtml/.

Unlike .html() that returns only the element's HTML content, this version of .outerHTML() returns the selected element and its HTML content or replaces it as .replaceWith() method but with the difference that allows the replacing HTML to be inherit by the chaining.

Examples can also be seeing in the URL above.

link|improve this answer
this is pretty old, answered question – genesis Jul 20 '11 at 19:09
feedback
$("#myNode").parent(x).html(); 

Where 'x' is the node number, beginning with 0 as the first one, should get the right node you want, if you're trying to get a specific one. If you have child nodes, you should really be putting an ID on the one you want, though, to just zero in on that one. Using that methodology and no 'x' worked fine for me.

link|improve this answer
feedback

you can also just do it this way

document.getElementById(id).outerHTML

where id is the id of the element that you are looking for

link|improve this answer
worked perfectly for me, exactly what I needed. Thank you – maddogandnoriko Dec 2 '11 at 14:58
1  
This doesn't work on FireFox – Undolog Jan 16 at 12:22
2  
$("#" + id).attr("id") is incredibly redundant. If you already have the id in a variable, why are you using a jquery selector to pull up the element from the dom, then querying its ID attribute? – Sam Dufel Apr 16 at 23:57
feedback
$("#myTable").parent().html();

Perhaps I'm not understanding your question properly, but this will get the selected element's parent element's html.

Is that what you're after?

link|improve this answer
9  
Acually no, because if that parent has other children he'll get that html too. – David V. Mar 10 '10 at 19:24
...what he said. I'm looking for the element itself, not it and all its parent's other children. How did this get two up votes??? – Ryan Mar 10 '10 at 22:26
feedback

Your Answer

 
or
required, but never shown

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