MediaWiki:Common.js
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
// 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&origin=*";
/**
* 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