Click here to create a new Paragraph.
$(
function(){
$( "p strong" ).live(
"click",
function( objEvent ){
// Create a new paragraph.
var jPara = $( "<p>Click <strong>here</strong> to create a new Paragraph.</p>" );
// Add the paragraph to the document (after the last P).
jPara.insertAfter( $( "p:last" ) );
}
);
}
);