Javascript examples for jQuery Method and Property:append
Insert span element at the end of each p element
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("<span>Hello World!</span>").appendTo("p"); });/*from w w w . java 2s . c o m*/ }); </script> </head> <body> <button>Test</button> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>