From jQuery JavaScript Library
« Back to Manipulation
insertBefore( content )
Insert all of the matched elements before another, specified, set of elements.
This operation is, essentially, the reverse of doing a regular $(A).
before(B), in that instead of inserting B before A, you're inserting A before B.
Arguments:| content | String | |
|---|
| Content after which the selected element(s) is inserted. |
Examples:| Name | Type |
Inserts all paragraphs before an element with id of "foo". Same as $("#foo").
before("p")
$("p").insertBefore("#foo"); // check before() examples
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="../jquery-latest.js"></script>
<script>
$(document).ready(function(){
$("p").insertBefore("#foo"); // check before() examples
});
</script>
<style>#foo { background:yellow; }</style>
</head>
<body>
<div id="foo">FOO!</div><p>I would like to say: </p>
</body>
</html>