jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Manipulation/API/jQuery

before(content)

各要素の前にコンテンツを挿入する。
引数
content
String,Element,jQuery
追加する文字列、DOM ElementおよびjQueryオブジェクト
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
指定HTMLを各p要素の前に追加。
<p> is what I said...</p>
<p> is what you said too...</p>
$("p").before("<b>Hello</b>");
[全コードを表示] [実行結果を単体で表示]