This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// parse through each element in the document | |
// replace hyphens with non-breaking hyphens | |
var elements = document.getElementsByTagName('*'); | |
for (var i = 0; i < elements.length; i++) { | |
var element = elements[i]; | |
// ignore script and style elements | |
if (element.tagName === 'SCRIPT' || element.tagName === 'STYLE') { | |
continue; |
OlderNewer