Run
Reset
Chrome
Cobalt
Monokai
Dreamweaver
Vibrant Ink
<!DOCTYPE html> <html> <head> <title>Learning jQuery</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> </head> <body> <button>Button</button> </body> </html>
/* CSS */
$(document).ready(function(){ // Set HTML contents for document's body $("button").click(function(){ $("body").html("<p>Hello World!</p>"); }); });