Difference between revisions of "MediaWiki:Common.js"

From Buddha-Nature
((by SublimeText.Mediawiker))
((by SublimeText.Mediawiker))
Line 21: Line 21:
 
*/
 
*/
 
var callback = function (response) {
 
var callback = function (response) {
var pages = response.query.random; // Process the output to get the titles
+
var bios = response.query; // Process the output to get the titles
Object.keys(pages).forEach(function(key) {
+
Object.keys(bios).forEach(function(key) {
console.log(pages[key].title);
+
console.log(bios[key].Bio);
 
});
 
});
 
};
 
};

Revision as of 18:19, 16 December 2022

// Discover page anchors
$('.fp-arrowUp').click(function(){
    $.fn.fullpage.moveSectionUp();
});
$('.fp-arrowDown').click(function(){
    $.fn.fullpage.moveSectionDown();
});




// API Tests

var apiEndpoint = "https://commons.tsadra.org/api.php";
var params = "action=ask&query=[[Dorje,_G.]]|%3FBio&format=jsonfm";

/**
* The function to wrap the result
*/
var callback = function (response) {
	var bios = response.query; // Process the output to get the titles
	Object.keys(bios).forEach(function(key) {
		console.log(bios[key].Bio);
	});
};

var scriptTag = document.createElement("script"); // Dynamically create a "script" tag
scriptTag.src = apiEndpoint + "?" + params + "&callback=callback"; // Point to the query string

document.getElementById("ApiTest").append(scriptTag); // Add the script tag to the document