Aktionen

Benutzer

Christopher.theophanous/common.js: Unterschied zwischen den Versionen

Aus exmediawiki

Die Seite wurde neu angelegt: „// Simple test to verify personal JS is loading console.log("Personal JavaScript is working!");“
 
Keine Bearbeitungszusammenfassung
 
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
// Simple test to verify personal JS is loading
$(document).ready(function() {
console.log("Personal JavaScript is working!");
    // Display a simple alert to confirm script is running
    alert("User JavaScript is working on exmediawiki.khm.de!");
 
    // Log to console for debugging
    console.log("User-specific JavaScript loaded successfully!");
 
    // Add a red border to the content area for visual confirmation
    $("#mw-content-text").css("border", "2px solid red");
});

Aktuelle Version vom 11. Juni 2025, 16:49 Uhr

$(document).ready(function() {
    // Display a simple alert to confirm script is running
    alert("User JavaScript is working on exmediawiki.khm.de!");

    // Log to console for debugging
    console.log("User-specific JavaScript loaded successfully!");

    // Add a red border to the content area for visual confirmation
    $("#mw-content-text").css("border", "2px solid red");
});