jQuery: The Write Less, Do More JavaScript Library

Manipulation/insertBefore

From jQuery JavaScript Library

Jump to: navigation, search

« 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:
contentString
Content after which the selected element(s) is inserted.

Examples:
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>

NameType