MediaWiki:Common.js
From Citypedia Online
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() {
var cityBar = '<div id="global-city-bar">' +
'<div class="city-bar-content">' +
'<a href="https://www.citypedia.online" class="city-link">🏠 <span class="city-name">Home</span></a>' +
'<a href="https://mumbai.citypedia.online" class="city-link">🌊 <span class="city-name">Mumbai</span></a>' +
'<a href="https://pune.citypedia.online" class="city-link">🏙️ <span class="city-name">Pune</span></a>' +
'<a href="https://thane.citypedia.online" class="city-link">🌳 <span class="city-name">Thane</span></a>' +
'</div>' +
'</div>';
$('body').prepend(cityBar);
});
