more information
Skip to content
document.addEventListener("DOMContentLoaded", function () {
const maxChars = 450;
const elements = document.querySelectorAll(".mobile-readmore-text");
if (window.innerWidth <= 767) {
elements.forEach(function (el) {
const fullText = el.textContent.trim();
if (fullText.length > maxChars) {
const shortText = fullText.substring(0, maxChars) + "…";
el.innerHTML =
'' +
shortText +
'' +
fullText +
'Mehr anzeigen';
const toggle = el.querySelector(".mobile-readmore-toggle");
const shortPart = el.querySelector(".short-text");
const fullPart = el.querySelector(".full-text");
toggle.addEventListener("click", function () {
const expanded = fullPart.style.display === "inline";
if (expanded) {
fullPart.style.display = "none";
shortPart.style.display = "inline";
toggle.textContent = "Mehr anzeigen";
} else {
fullPart.style.display = "inline";
shortPart.style.display = "none";
toggle.textContent = "Weniger anzeigen";
}
});
}
});
}
});