MediaWiki:Common.js: Unterschied zwischen den Versionen
Aus Aloran Kompendium
| (Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
| Zeile 6: | Zeile 6: | ||
$( document ).ready(function(){ | $( document ).ready(function(){ | ||
| − | $(" | + | $(".mw-headline").each(function(index){ |
$( this).after(htmlString); | $( this).after(htmlString); | ||
}); | }); | ||
}); | }); | ||
Aktuelle Version vom 14. August 2017, 00:41 Uhr
/* Das folgende JavaScript wird für alle Benutzer geladen. */
console.log('Das Aloran Kompendium');
var htmlString = "<a href=\"#top\"><img src=\"images/6/67/Icon-Anchor.png\" height=\"15\" width=\"15\" class=\"topanchor\"></a>";
$( document ).ready(function(){
$(".mw-headline").each(function(index){
$( this).after(htmlString);
});
});