MediaWiki:Common.js
From CompetenceBase
Note: After saving, 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)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
$(document).ready(function() {
// Listen for language changes from the ULS
$(document).on('languagechange', function() {
// Remove the 'uselang' parameter from the URL
var url = new URL(window.location.href);
url.searchParams.delete('uselang');
// Use the History API to update the URL without reloading
window.history.replaceState({}, '', url.toString());
});
// Trigger language change when the ULS triggers a language switch
mw.hook('uls.language.change').add(function() {
// Manually trigger the language change event
$(document).trigger('languagechange');
});
});