Basic | Alle title-Attribute entfernen | Remove all title-attributes
jQuery(document).ready(function() { const items = document.querySelectorAll(‘.fancy-date a, .post-entry-content .entry-title a, .post-thumbnail img, img, .data-link’); items.forEach(item => { item.removeAttribute(‘title’); }); });Continue reading