Inserts a jQuery object (similar to an Array of DOM Elements) before all paragraphs. : before « jQuery « JavaScript DHTML






Inserts a jQuery object (similar to an Array of DOM Elements) before all paragraphs.

  

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){

          $("p").before( $("b") );
                
         
        });
    </script>

    
  </head>
  <body>
    <body>
         <b>asdf</b>
         <p>asdf: </p>
    </body>
</html>

   
    
  








Related examples in the same category

1.Add tag before
2.Add text node before
3.before(content): Insert content before each of the matched elements.
4.Inserts some HTML before all paragraphs.
5.Inserts a DOM element before all paragraphs.
6.Add before and after