Difference between revisions of "MediaWiki:LastPage.js"

From Tycoon Gaming
m (hehh)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
function iniFrame() {  
+
// Define a function called addLastPageButton
if ( window.location !== window.parent.location )  
+
function addLastPageButton() {  
{
+
  // Check if the current page is loaded inside an iframe
var output;
+
  if (window.location !== window.parent.location) {
window.element = document.getElementById("globalWrapper");
+
    // If so, create a new variable called 'output'
var save = window.element.innerHTML;
+
    var output;
output = '<button class="LastPage" onclick="var oldURL = document.referrer; window.location.href = oldURL;">Return to Last Page</button>'
+
    // Create a new div element to contain the button
window.element.innerHTML = save + output;
+
    var container = document.createElement("div");
}
+
    // Set the innerHTML of the container to the button code
 +
    container.innerHTML = '<button class="LastPage" onclick="var oldURL = document.referrer; window.location.href = oldURL;"><b>Return to Last Page</b></button>';
 +
    // Append the container to the body of the page
 +
    document.body.appendChild(container);
 +
  }
 
}
 
}
iniFrame();
+
 
 +
// Call the addLastPageButton function when the page loads
 +
addLastPageButton();

Latest revision as of 21:48, 29 April 2023

// Define a function called addLastPageButton
function addLastPageButton() { 
  // Check if the current page is loaded inside an iframe
  if (window.location !== window.parent.location) { 
    // If so, create a new variable called 'output'
    var output;
    // Create a new div element to contain the button
    var container = document.createElement("div");
    // Set the innerHTML of the container to the button code
    container.innerHTML = '<button class="LastPage" onclick="var oldURL = document.referrer; window.location.href = oldURL;"><b>Return to Last Page</b></button>';
    // Append the container to the body of the page
    document.body.appendChild(container);
  }
}

// Call the addLastPageButton function when the page loads
addLastPageButton();