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 0d9dd08 commit 0d620c3Copy full SHA for 0d620c3
0x15-javascript-web_jquery/8-script.js
@@ -0,0 +1,10 @@
1
+$(document).ready(function () {
2
+ $.getJSON(
3
+ "https://swapi-api.alx-tools.com/api/films/?format=json",
4
+ function (data) {
5
+ data.results.forEach(function (film) {
6
+ $("<li>").text(film.title).appendTo("ul#list_movies");
7
+ });
8
+ }
9
+ );
10
+});
0 commit comments