Jump to content

MediaWiki:Common.js: Difference between revisions

From Costa Sano MediaWiki
No edit summary
No edit summary
Line 1: Line 1:
console.log("Common.js loaded");
console.log("Common.js loaded");


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

Revision as of 14:32, 14 February 2026

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

console.log("Is jQuery defined?", typeof jQuery);
console.log("Is $ defined?", typeof $);