// ==UserScript== // @name No Superscript Footnote Markers // @namespace http://svn.ideaharbor.org/greasemonkey // @description Remove the superscript footnote markers from scriptures.lds.org. Words with footnotes are still colored, underlined links, so you can't miss them. But this way you /can/ copy-and-paste out of the scriptures without copying those annoying extra letters! // @include http://scriptures.lds.org/* // ==/UserScript== // from http://diveintogreasemonkey.org/patterns/iterate-every-element.html var allElements, thisElement; allElements = document.getElementsByTagName('sup'); for (var i = 0; i < allElements.length; i++) { allElements[i].innerHTML = ''; }