This repository has been archived on 2024-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
qdouze2-wordpress-theme/js/prettylinks.js
2023-05-03 13:18:11 +02:00

6 lines
No EOL
160 B
JavaScript

var length = 35;
document.querySelectorAll('.pretty-link').forEach(function (i) {
var str = i.textContent.replace('https://', '');
i.textContent = str;
});