Home
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"> </script> <script> $(document).ready(function () { $('p').append('World!'); }); </script> </head> <body> <h1>Demo: jQuery append() method </h1> <p>Hello </p> </body> </html>
Result: