$("p").after("<hr>")
Adds horizontal rules after every paragraph
$("hr").remove()
Removes all the horizontal rules from page.
$("i").wrap("<b></b>")
Wraps all italisized text in bold.
$("#section1").clone().appendTo("test_paragraph");
Clones the first section and appends it to this section