If you wrap the container in a dummy P
tag you will get the container HTML also.
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();