We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5655df commit e90238dCopy full SHA for e90238d
0x15-javascript-web_jquery/7-script.js
@@ -0,0 +1,8 @@
1
+$(document).ready(function () {
2
+ $.getJSON(
3
+ "https://swapi-api.alx-tools.com/api/people/5/?format=json",
4
+ function (data) {
5
+ $("DIV#character").text(data.name);
6
+ }
7
+ );
8
+});
0 commit comments