Is it possible to hide the title from a link with CSS?

后端 未结 5 965
孤独总比滥情好
孤独总比滥情好 2020-12-06 04:17

I have an anchor element with a title attribute. I want to hide the popup that appears when hovering over it in the browser window. In my case, it is not possible to do some

5条回答
  •  感情败类
    2020-12-06 04:53

    try to change your code using this

    $(document).ready(function() {
        $("a").removeAttr("title");
    });
    

    this will remove title attribute so the hint label won't be appear when hover on the link

提交回复
热议问题