Is it possible to disable tooltips for links?

2019-02-20 05:41发布

I don't have any title or alt tags set on my links so IE10 uses the href content for tooltips when I hover or click and hold a link. I've been looking around but I can't find any solutions for overriding this functionality.

Update:

I've figured a solution for another problem I've had. When you touched and held, a weird square would pop up. To fix that I used this line of code.

document.addEventListener("MSHoldVisual", function(e) { e.preventDefault(); }, false);

I'm still trying to find a solution to disable the tooltip for touch actions.

0条回答
登录 后发表回答