MediaWiki:Common.js: Difference between revisions

From Hauck LabWiki
Jump to navigation Jump to search
Created page with "Any JavaScript here will be loaded for all users on every page load.: // Real Example Tab auf allen Seiten hinzufügen $(document).ready(function() { var realExampleTab = $('<li id="ca-realexample"><a href="/wiki/Real_Example" title="Real Example">Real Example</a></li>'); $('#p-views ul').append(realExampleTab); });"
 
Replaced content with "// java"
Tag: Replaced
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
// java
// Real Example Tab auf allen Seiten hinzufügen
$(document).ready(function() {
    var realExampleTab = $('<li id="ca-realexample"><a href="/wiki/Real_Example" title="Real Example">Real Example</a></li>');
    $('#p-views ul').append(realExampleTab);
});

Latest revision as of 16:28, 30 May 2025

// java