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> <body> <h1>jQuery get() Method</h1> <button>Send Get Request</button> <script> $(document).ready(function(){ $("button").click(function(){ $.get("/greet-specific.php",{ myname: "Alex" },function(data){ alert(data); }, "text"); }); }); </script> <p><strong>Note</strong>: Here, the expected response from the server is text (string).</p> </body> </html>
OUTPUT
×

Save as Private