A weboldal sütiket (cookie-kat) használ, hogy biztonságos böngészés mellett a legjobb felhasználói élményt nyújtsa.

Keresés

Rendezés:
document.addEventListener("DOMContentLoaded", function() { let descriptionContainer = document.querySelector(".product-short-description"); if (!descriptionContainer) { console.warn("Element with class .product-short-description not found."); return; // Exit if the description container is missing } let table = descriptionContainer.querySelector("tbody"); if (!table) { console.warn("No found inside .product-short-description."); return; } let tableRows = table.querySelectorAll("tr"); let maxVisibleRows = 6; if (tableRows.length > maxVisibleRows) { for (let i = maxVisibleRows; i < tableRows.length; i++) { tableRows[i].style.display = "none"; } let showMoreButton = document.createElement("button"); showMoreButton.innerText = "Mutass többet"; showMoreButton.style.cssText = ` background: #2c9c00; color: white; border: none; padding: 8px 12px; cursor: pointer; margin-top: 10px; display: block; width: 100%; text-align: center; `; showMoreButton.addEventListener("click", function() { tableRows.forEach(row => row.style.display = ""); // Show all rows showMoreButton.style.display = "none"; // Hide button after expanding }); descriptionContainer.appendChild(showMoreButton); console.log("Show More button added successfully."); } else { console.log("Not enough rows to hide. No button added."); } });
Árukereső.hu Árukereső.hu