Difference between revisions of "MediaWiki:Common.js"
From mispar
Line 5: | Line 5: | ||
found = re.exec(window.location.href); | found = re.exec(window.location.href); | ||
− | console.log(found); | + | if (found) { |
+ | console.log(found[1]); | ||
+ | var elem = document.getElementById(id); | ||
+ | if (elem) { | ||
+ | elem = style.backgroundColor = 'yellow'; | ||
+ | } | ||
+ | } |
Revision as of 21:52, 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) { console.log(found[1]); var elem = document.getElementById(id); if (elem) { elem = style.backgroundColor = 'yellow'; } }