Difference between revisions of "MediaWiki:Common.js"

From mispar
Jump to: navigation, search
 
Line 7: Line 7:
 
if (found) {
 
if (found) {
 
     var id = found[1];
 
     var id = found[1];
    console.log(id);
 
 
     var elem = document.getElementById(id);
 
     var elem = document.getElementById(id);
 
     if (elem) {
 
     if (elem) {

Latest revision as of 21:57, 4 March 2022

/* Any JavaScript here will be loaded for all users on every page load. */


const re = /#(.*)$/;

found = re.exec(window.location.href);
if (found) {
    var id = found[1];
    var elem = document.getElementById(id);
    if (elem) {
        elem.style.backgroundColor = 'yellow';
    }
}