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

6 lines
160 B
JavaScript
Raw Normal View History

2022-12-17 19:46:29 +01:00
var length = 35;
2023-05-03 13:18:11 +02:00
document.querySelectorAll('.pretty-link').forEach(function (i) {
var str = i.textContent.replace('https://', '');
i.textContent = str;
});