Suppress Link Titles

前端 未结 6 1556
甜味超标
甜味超标 2021-01-13 21:25

Is there any way to suppress the pop-up titles on links, yet still keep them on the page for the visually impaired?

6条回答
  •  粉色の甜心
    2021-01-13 22:03

    Links in my browser don't show tool-tips like that unless they have a title attribute.

    If you want, you could use Greasemonkey to run this bit of javascript on evey page to remove them.

    var anchorTags;
    anchorTags = document.getElementsByTagName("a");
    for(var i = 0; i < anchorTags.length; i++) {
      anchorTags[i].removeAttribute("title");
    }
    

提交回复
热议问题