Suppress Link Titles

前端 未结 6 1570
甜味超标
甜味超标 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:15

    This works in jQuery.

    var val;
    $('[YOUR_SELECTOR]').hover(function() {
        val = $(this).attr('title');
        $(this).removeAttr('title');
      },function() {
        $(this).attr('title',val);
    })
    

提交回复
热议问题