How do i get the html on '#container' including '#container' and not just what's inside it.

<div id="container">
 <div id="one">test 1 </div>
 <div id="two">test 2 </div>
 <div id="three">test 3 </div>
 <div id="four">test 4 </div>
</div>

I have this which gets the html inside #container. it does not include the #container element itself. That's what i'm looking to do

var x = $('#container').html();
$('#save').val(x);

Check http://jsfiddle.net/rzfPP/58/

link|improve this question

you could put container inside another container and get that containers html... but that seems a little hacky. perhaps if we knew a little more about the problem, we could come up with a workable solution? what are you doing with a text area full of html? – Patricia Jun 23 '11 at 19:18
feedback

7 Answers

up vote 1 down vote accepted

All you need to do is

var x = $('#container').wrap('<p/>').parent().html();

Check working example at http://jsfiddle.net/rzfPP/68/

To unwrap()the <p> tag when done, you can add

$('#container').unwrap();
link|improve this answer
1  
Very nice solution yet so simple. – Pinkie Jun 23 '11 at 20:18
That's still creating an extra element... – mc10 Jun 24 '11 at 0:00
2  
@mc10 we can simply use clone() and you will not have to worry about extra elements created. var x = $('#container').clone().wrap('<p/>').parent().html();. The idea of wrap is great and allot less complicated then most of the solutions provided. – Pinkie Jun 24 '11 at 0:18
feedback
var x = $('#container').get(0).outerHTML;

As others have pointed out, this will not work in FireFox. If you need it to work in FireFox, then you might want to take a look at the answer to this question : In jQuery, are there any function that similar to html() or text() but return the whole content of matched component?

link|improve this answer
feedback
$('#container').clone().wrapAll("<div/>").parent().html();
link|improve this answer
outerHTML property does not work on Firefox so you need to do it with clone – Robert Noack Jun 23 '11 at 19:20
feedback
var x = $('#container')[0].outerHTML;
link|improve this answer
feedback

Firefox doesn't support outerHTML, so you need to define a function to help support it:

function outerHTML(node) {
    return node.outerHTML || (
        function(n) {
            var div = document.createElement('div');
            div.appendChild( n.cloneNode(true) );
            var h = div.innerHTML;
            div = null;
            return h;
        }
    )(node);
}

Then, you can use outerHTML:

var x = outerHTML($('#container').get(0));
$('#save').val(x);
link|improve this answer
feedback
$.fn.outerHtml = function()
{
if (this.length)
{
    var div = $('<div style="display:none"></div>');
    var clone =
    $(this[0].cloneNode(false)).html(this.html()).appendTo(div);
    var outer = div.html();
    div.remove();
    return outer;
}
else
    return null;
};

from http://forum.jquery.com/topic/jquery-getting-html-and-the-container-element-12-1-2010

link|improve this answer
It doesn't work. – Pinkie Jun 23 '11 at 19:29
feedback
var x = $($('div').html($('#container').clone())).html();
link|improve this answer
1  
You are creating 3 jquery objects in one statement. Although it works, it's an overkill. – Pinkie Jun 23 '11 at 19:27
feedback

Your Answer

 
or
required, but never shown

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