Creating HTML elements on the fly : insertAfter « jQuery « JavaScript DHTML






Creating HTML elements on the fly

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


            $("<p>Hi there!</p>").insertAfter("#followMe");
        });
    </script>
<style>

  div { margin:3px; width:50px; position:absolute;
        height:50px; left:10px; top:30px; 
        background-color:yellow; }
  div.red { background-color:red; }
  
</style>
  </head>
  <body>
    <body>
        <p id="followMe">Follow me!</p>
    </body>
</html>

   
  








Related examples in the same category

1.Insert cloned object
2.Inser query after
3.Inserts some HTML after all paragraphs.
4.Inserts a DOM element after all paragraphs.
5.insertAfter(content): the reverse of $(A).after(B)
6.Inserts all paragraphs after an element