Difference between revisions of "MediaWiki:Common.js"
From Conceptual Reconstructionism Project
Thaumasnot (talk | contribs) |
Thaumasnot (talk | contribs) |
||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
$('span[@ | $('span[@data-def]').click( function(){ | ||
let url = location.href; | |||
location.href = "#"+this.dataDef; | |||
history.replaceState(null, null, url); | |||
} ); |
Revision as of 09:25, 6 December 2021
/* Any JavaScript here will be loaded for all users on every page load. */ $('span[@data-def]').click( function(){ let url = location.href; location.href = "#"+this.dataDef; history.replaceState(null, null, url); } );