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.
(function() {
function highlightHash() {
$('.article-table tr.selected, .wikitable tr.selected').removeClass('selected');
var hash = window.location.hash;
if (!hash) {
return;
}
var elem = document.getElementById(hash.substring(1));
if (!elem) {
return;
}
$(elem).closest('tr').addClass('selected');
}
highlightHash();
$(window).on('hashchange', highlightHash);
})();