I want to make sure that the speech bubble does not come out due to the title tag.

Asked 2 years ago, Updated 2 years ago, 39 views

I want to use node.js and delete the title tag like removeAttr('title') so that the speech bubble does not come out.

html node.js

2022-09-22 18:52

1 Answers

<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/


2022-09-22 18:52

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.