Remove attribute "title"

Posted in: Newspaper
Post count: 3

When I hover over a link, a window appears with the name of the link. I don’t need it. How do I delete the “title” attribute from all links?

https://imgur.com/a/fyf5s3u

Post count: 18283

Hello !

You can use this code: window.onload = function() { var alinks = document.getElementsByTagName("a"); for (var i = 0; i < alinks.length; i++) { alinks[i].removeAttribute("title"); } }

And you have to insert it here: https://www.screencast.com/t/x0qwAFTp

I hope this was helpful !

Thank you !

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.