<abbr>

This is an abbreviation: abbr.

The DOM structure is not altered. Further, using a DOM query to retrieve the element (e.g. document.getElementsByTagName("abbr")), will retrieve the correct <abbr> tags. These elements will reveal a tagName of "ABBR" and a scopeName of "HTML". A near perfect fix.

back