Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 2: | Zeile 2: | ||
$(document).ready(function() { | $(document).ready(function() { | ||
if ( | // Überprüfen, ob das Inhaltsverzeichnis existiert | ||
var | if ($('#toc').length) { | ||
// Erstelle ein neues Element für den Link | |||
var backToMainLink = $('<div>', { | |||
'id': 'back-to-main', | |||
'style': 'margin-top: 20px;', // Optionaler Abstand nach dem TOC | |||
'html': '<a href="https://diablo4wiki.de/index.php">← Zurück zur Hauptseite</a>' | |||
}); | |||
// Füge den Link nach dem Inhaltsverzeichnis hinzu | |||
$('#toc').after(backToMainLink); | |||
} | } | ||
}); | }); | ||
Version vom 22. September 2024, 15:44 Uhr
/* Das folgende JavaScript wird für alle Benutzer geladen. */
$(document).ready(function() {
// Überprüfen, ob das Inhaltsverzeichnis existiert
if ($('#toc').length) {
// Erstelle ein neues Element für den Link
var backToMainLink = $('<div>', {
'id': 'back-to-main',
'style': 'margin-top: 20px;', // Optionaler Abstand nach dem TOC
'html': '<a href="https://diablo4wiki.de/index.php">← Zurück zur Hauptseite</a>'
});
// Füge den Link nach dem Inhaltsverzeichnis hinzu
$('#toc').after(backToMainLink);
}
});
