すべてのp要素を追加(変更)する

$('p').text('変更されテキスト');
※ 上は全てのp要素の文字を変更する
実行例

段落1

段落2


変更前のhtml
<div id="content">
	<p>段落1</p>
	<p>段落2</p>
</div>