Usor:AristippusSer/vector.js

E Vicipaedia

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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
$("div, span").each(function() {
	if (this.style.color == "rgb(102, 102, 102)" ||
	    this.style.fontSize == "210%" ||
	    (this.style.fontSize == "160%" && this.style.color == "rgb(72, 72, 72)") ) {
      this.innerText = this.innerText.replace(/u/g,'v').replace(/ /g, '·').replace(/[,.]/g,'');
      this.style.fontFamily = 'Cal Rustic Capitals';
      this.style.textTransform = 'uppercase';
	}
});