Given a jQuery result set, how do you convert that back into plain HTML?
<div class="abc">
foo <strong>FOO</strong>
</div>
<div class="def">
bar
</div>
--
var $mySet = $('div');
Given $mySet
, how would you go about returning to the plain HTML above?