View source for MediaWiki:Common.js
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
/* Any JavaScript here will be loaded for all users on every page load. */
$(function () {
// Tworzymy nowy link
var link = $('<a>')
.attr('href', '/wiki/Deklaracja_dostepnosci') // ← zamień na właściwy URL
.text('Deklaracja dostępności');
// Szukamy kontenera w stopce i wstrzykujemy link
$('<li>').append(link).appendTo('.mw-footer li:last').parent(); // dodajemy jako ostatni element listy
});
000
1:0
Return to MediaWiki:Common.js.