jQuery Content Function Tester
New content will go here
HTML Before:
<div id="message"><p>New content will go here</p></div>
HTML After:
.text()
$('#message').text();
.html()
$('#message').html();
.append()
$('#message').append();
.prepend()
$('#message').prepend();
.after()
$('#message').after();
.before()
$('#message').before();
.replaceWith()
$('#message').replaceWith();
.remove()
$('#message').remove();
.empty()
$('#message').empty();