Copy HTML For Newsletter
by aaronk85
HTML
<div id="content">
<div id="newsletter">
<span>asdf</span>
</div>
</div>
JavaScript
$("#newsletter").live('click',function(){
var htmlStr = $(this).html();
$(this).text(htmlStr);
$(this).attr('id', 'newsletter2');
});