Javascript examples for jQuery Method and Property:html
Set content returned from a function to <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(){ $("p").html(function(n){ return "index: " + n; });//w ww. j a v a2 s. c o m }); }); </script> </head> <body> <button>Change the content of the p elements</button> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>