<div>
<a href="#" title="Hello World Title">
If you mouse over here, you'll see the title.
</a>
</div>
<div>
<a href="#" class="hide-title-attr" title="Hello World Title">
If you mouse over here, the title doesn't come out.
</a>
</div>
.hide-title-attr {
pointer-events: none;
}
How to hide with CSS.
https://jsfiddle.net/xqr637pa/
© 2024 OneMinuteCode. All rights reserved.