Remove Title Attributes
Frustrated by tooltips redundantly telling you the section heading in HTML documents generated by [DocBook][DB]? (Such as [this one][O].) No? Maybe it’s just me.
This bookmarklet fixes the problem. Good web browsers let you drag it to your bookmarks bar.
The annoying tooltips are due to the HTML title
attribute. It’s set for div
s in the document. The bookmarklet runs very little JavaScript to remove all title
attributes on div
elements.
Here’s the script:
var divElems;
divElems = document.getElementsByTagName("div");
for (var index = 0; index