Try It Editor
Tip: Press
Ctrl/⌘ + Enter
to Run
▶ Run
Reset
Copy
Download
Code
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>$.getJSON()</title> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> </head> <body> <button id="btn">getJSON</button> <pre id="out"></pre> <script> $("#btn").click(function(){ $.getJSON("https://jsonplaceholder.typicode.com/todos/1", function(data){ $("#out").text(JSON.stringify(data, null, 2)); }); }); </script> </body> </html>
Output