<!DOCTYPE html>src="//libs.baidu.com/jquery/1.10.2/jquery.min.js"function prependText(){var txt1="<p>Text.</p>"; // Create text with HTMLvar txt2=$("<p></p>").text("Text."); // Create text with jQueryvar txt3=document.createElement("p");txt3.innerHTML="Text."; // Create text with DOM$("p").prepend(txt1,txt2,txt3); // Prepend new elements}This is a paragraph.onclick="prependText()"Prepend text