MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
(Support per-page Google Translate link in sidebar) |
(No difference)
|
Revision as of 22:05, 27 December 2023
/* Any JavaScript here will be loaded for all users on every page load. */
// Select the sidebar link
var translateLink = document.getElementById( "t-link" );
// Function to generate the Google Translate link
function createTranslateLink() {
var url = window.location.href;
var translateUrl = "https://translate.google.com/translate?u=" + encodeURIComponent(url);
translateLink.href = translateUrl;
}
// Call the function when the page loads
createTranslateLink();