1

I am working in a project with reactjs and when i hover on an icon file (after uploading it o pre-charging it) this displays: enter image description here

Do you know how i can remove this?

Gaby
  • 55
  • 3

1 Answers1

1

The 'hint' you see when you hover is a default browser behavior, but you can suggest different text using the 'title' attribute:

<a href="/mydownload.png" target="_new" title="Click to download 'image.png'">image.png</a>

And then "Click to download 'image.png'" would replace the string in your black box there.

As per this question about link alt text

Sydney Y
  • 2,912
  • 3
  • 9
  • 15