Difference between revisions of "MediaWiki:LastPage.js"
From Tycoon Gaming
BelgianCat (talk | contribs) m (testing alternative code (chatGPT)) |
BelgianCat (talk | contribs) m (hehh) |
||
Line 1: | Line 1: | ||
− | // Define a function called | + | // Define a function called addLastPageButton |
function addLastPageButton() { | function addLastPageButton() { | ||
// Check if the current page is loaded inside an iframe | // Check if the current page is loaded inside an iframe |
Latest revision as of 20: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();