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/trim.js

18 lines
396 B
JavaScript
Raw Permalink Normal View History

2023-05-03 13:18:11 +02:00
const LENGHT = 35;
2022-12-17 19:46:29 +01:00
2023-05-03 13:18:11 +02:00
function limitString(str) {
len = str.length;
if (len > LENGHT) {
return str.substr(0, (LENGHT - 3)) + '...';
} else {
return str;
}
}
document.querySelectorAll('.trim-that a').forEach(function (i) {
i.textContent = limitString(i.textContent);
2022-12-17 19:46:29 +01:00
});
2023-05-03 13:18:11 +02:00
document.querySelectorAll('.limit').forEach(function (i) {
i.textContent = limitString(i.textContent);
});