Jump to content

MediaWiki:Common.js: Difference between revisions

From Costa Sano MediaWiki
Created page with "Any JavaScript here will be loaded for all users on every page load.: $(function() { const addr = $('#pf-address'); const lat = $('#pf-latitude'); const lon = $('#pf-longitude'); if (addr.length === 0) return; // Not on the Place form addr.on('change', function() { const q = encodeURIComponent(addr.val()); if (!q) return; const url = `https://nominatim.openstreetmap.org/search?format=json&q=${q}`; $.getJSON(ur..."
 
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
$(function() {
$(function() {
     const addr = $('#pf-address');
    // Find fields by name (Page Forms always preserves name=)
     const lat = $('#pf-latitude');
     const addr = $('input[name="address"]');
     const lon = $('#pf-longitude');
     const lat = $('input[name="latitude"]');
     const lon = $('input[name="longitude"]');


     if (addr.length === 0) return; // Not on the Place form
    // Only run on the Place form
     if (addr.length === 0) return;


     addr.on('change', function() {
     addr.on('change', function() {
Line 12: Line 12:
         if (!q) return;
         if (!q) return;


         const url = `https://nominatim.openstreetmap.org/search?format=json&q=${q}`;
         const url = 'https://nominatim.openstreetmap.org/search?format=json&q=' + q;


         $.getJSON(url, function(data) {
         $.getJSON(url, function(data) {

Revision as of 13:57, 14 February 2026

$(function() {
    // Find fields by name (Page Forms always preserves name=)
    const addr = $('input[name="address"]');
    const lat  = $('input[name="latitude"]');
    const lon  = $('input[name="longitude"]');

    // Only run on the Place form
    if (addr.length === 0) return;

    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);
            }
        });
    });
});