<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").after( document.createTextNode("Hello") ); }); </script> </head> <body> <body> <p>asdf</p> </body> </html>
30.57.insertAfter | ||||
30.57.1. | Insert cloned object | |||
30.57.2. | Inser query after | |||
30.57.3. | Creating HTML elements on the fly | |||
30.57.4. | Inserts some HTML after all paragraphs. | |||
30.57.5. | Inserts a DOM element after all paragraphs. | |||
30.57.6. | insertAfter(content): the reverse of $(A).after(B) | |||
30.57.7. | Inserts all paragraphs after an element |