|
|
(11 intermediate revisions by the same user not shown) |
Line 8: |
Line 8: |
| $.fn.fullpage.moveSectionDown(); | | $.fn.fullpage.moveSectionDown(); |
| }); | | }); |
|
| |
|
| |
|
| |
|
| |
| // API Tests
| |
|
| |
| var apiEndpoint = "https://commons.tsadra.org/api.php";
| |
| var params = "action=ask&query=[[Modification date::%2B]]|%3FModification date|sort%3DModification date|order%3Ddesc&format=jsonfm";
| |
|
| |
| /**
| |
| * The function to wrap the result
| |
| */
| |
| var callback = function (response) {
| |
| var pages = response.query.random; // Process the output to get the titles
| |
| Object.keys(pages).forEach(function(key) {
| |
| console.log(pages[key].title);
| |
| });
| |
| };
| |
|
| |
| var scriptTag = document.createElement("script"); // Dynamically create a "script" tag
| |
| scriptTag.src = apiEndpoint + "?" + params + "&callback=callback"; // Point to the query string
| |
|
| |
| document.body.appendChild(scriptTag); // Add the script tag to the document
| |