HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery Basic program</h1> <button>Click Me</button> <script> $(document).ready(function(){ // all your jquery / javascript code goes here. $("button").click(function(){ alert("welcome to jQuery!"); }); }); </script> </body> </html>
OUTPUT
×

Save as Private