סדנאות מעולם אחר

דילוג לתוכן document.addEventListener('DOMContentLoaded', function() { // Select all columns with the 'clickable-column' class document.querySelectorAll('.clickable-column').forEach(function(column) { // Define the link you want to use as the URL const linkUrl = column.getAttribute('data-url'); // Attach a click event if (linkUrl) { column.style.cursor = 'pointer'; column.addEventListener('click', function() { window.location.href = linkUrl; }); } }); });