<!DOCTYPE html> <html> <head> </head> <body style="font:14px/1.5 'Odor Mean Chey'">This is the first paragraph.
This is the second paragraph.
<script> function appendText() { $("body").append($("#p1")); } </script> </body> </html>
This is the first paragraph.
This is the second paragraph.
<!DOCTYPE html> <html> <head> </head> <body style="font:14px/1.5 'Odor Mean Chey'">This is the first paragraph.
This is the second paragraph.
<script> function prependText() { $("body").prepend($("#p2")); } </script> </body> </html>
This is the first paragraph.
This is the second paragraph.