MediaWiki:Common.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
console.log("Common.js loaded"); | console.log("Common.js loaded"); | ||
console.log(" | // Page Forms hook: runs AFTER the form is inserted into the page | ||
console.log(" | window.pfOnFormLoad = function() { | ||
console.log("pfOnFormLoad fired"); | |||
// Now the fields exist | |||
const addr = $('input[name="address"]'); | |||
const lat = $('input[name="latitude"]'); | |||
const lon = $('input[name="longitude"]'); | |||
console.log("Address fields found:", addr.length); | |||
// Attach geocoding | |||
addr.on('change', function() { | |||
const q = encodeURIComponent(addr.val()); | |||
if (!q) return; | |||
const url = 'https://nominatim.openstreetmap.org/search?format=json&q=' + q; | |||
$.getJSON(url, function(data) { | |||
if (data && data.length > 0) { | |||
lat.val(data[0].lat); | |||
lon.val(data[0].lon); | |||
} | |||
}); | |||
}); | |||
}; | |||
Revision as of 14:35, 14 February 2026
console.log("Common.js loaded");
// Page Forms hook: runs AFTER the form is inserted into the page
window.pfOnFormLoad = function() {
console.log("pfOnFormLoad fired");
// Now the fields exist
const addr = $('input[name="address"]');
const lat = $('input[name="latitude"]');
const lon = $('input[name="longitude"]');
console.log("Address fields found:", addr.length);
// Attach geocoding
addr.on('change', function() {
const q = encodeURIComponent(addr.val());
if (!q) return;
const url = 'https://nominatim.openstreetmap.org/search?format=json&q=' + q;
$.getJSON(url, function(data) {
if (data && data.length > 0) {
lat.val(data[0].lat);
lon.val(data[0].lon);
}
});
});
};