MediaWiki:Common.js

From Citypedia Online
Revision as of 16:22, 2 January 2026 by Super Admin (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */
/* Top Bar for Citypedia Network */

$(function() {
    // Check if the bar already exists to prevent double bars
    if ($('#global-city-bar').length === 0) {
        var cityBar = '<div id="global-city-bar">' +
            '<div class="city-bar-content">' +
            '<a href="https://www.citypedia.online" class="city-link"><img src="https://www.citypedia.online/images/e/ee/C.png" class="nav-icon"> <span class="city-name">Home</span></a>' +
            '<a href="https://mumbai.citypedia.online" class="city-link"><img src="https://www.citypedia.online/images/a/a3/M.png" class="nav-icon"> <span class="city-name">Mumbai</span></a>' +
            '<a href="https://pune.citypedia.online" class="city-link"><img src="https://www.citypedia.online/images/3/36/P.png" class="nav-icon"> <span class="city-name">Pune</span></a>' +
            '<a href="https://thane.citypedia.online" class="city-link"><img src="https://www.citypedia.online/images//0/02/T.png" class="nav-icon"> <span class="city-name">Thane</span></a>' +
            '</div>' +
            '</div>';

        $('body').prepend(cityBar);
    }
});