Jump to content

MediaWiki:Common.js: Difference between revisions

From Costa Sano MediaWiki
Replaced content with "console.log("Common.js is running");"
Tag: Replaced
No edit summary
Line 1: Line 1:
console.log("Common.js is running");
console.log("Common.js loaded");
 
// Test: do we see the address field?
$(document).ready(function() {
    console.log("Looking for address field:", $('input[name="address"]').length);
});

Revision as of 14:29, 14 February 2026

console.log("Common.js loaded");

// Test: do we see the address field?
$(document).ready(function() {
    console.log("Looking for address field:", $('input[name="address"]').length);
});