Review for "Autonomous Ceramic Dripper (2 st.)"

Autonomous Ceramic Dripper (2 st.)

Selvstyrt keramiske dryppere er egnet for vanning av ulike typer planter.Spray 100 ml over 24 timer Passer til plantekasser eller potter med en diameter på 15 til 25 cm Brukes med vanntønne (ikke inkludert) Høyde: 11,5 cm Bredde: 3,5 cm

Review

0 1 2 3 4
(4/5

Ok

:0 1 2 3 4
Total Rating:0 1 2 3 4
Total Rating:0 1 2 3 4

Disse fungerte bra.


Product added to wishlist
// Función para cargar más productos (puedes adaptarla para hacer peticiones AJAX) function cargarProductos() { for (let i = 1; i <= 10; i++) { const producto = document.createElement('div'); producto.className = 'producto'; producto.textContent = `Producto ${((window.pagina - 1) * 10) + i}`; document.getElementById('product-list').appendChild(producto); } }// Variable para controlar la página actual window.pagina = 1;// Crear un elemento "observador" invisible al final de la lista const sentinel = document.createElement('div'); sentinel.id = 'sentinel'; document.body.appendChild(sentinel);// Configurar Intersection Observer const observer = new IntersectionObserver((entries) => { if (entries[0].isIntersecting) { window.pagina++; cargarProductos(); } }, { rootMargin: '100px', });// Observar el elemento "sentinel" observer.observe(document.getElementById('sentinel'));// Cargar los primeros productos cargarProductos();