Yes, you can remove the title using the javascript
var linkElement = document.querySelector(‘a[title=“best-dog-ever-dog-bandana-collar”]’);
if (linkElement) {
linkElement.removeAttribute(‘title’);
}
Yes, you can remove the title using the javascript
var linkElement = document.querySelector(‘a[title=“best-dog-ever-dog-bandana-collar”]’);
if (linkElement) {
linkElement.removeAttribute(‘title’);
}