ערכה של משחקוני חשיבה ומשימות אתגר עבור המנהל וצוותו.
כל משחקון מכוון לתחום ניהולי ותפקודי כדוגמת: תכנון משימות, חלוקת עבודה, ניהול זמן, יציאה ממצבי תקיעות, חשיבה יצירתית ועוד.
המשחקונים מלווים בהצעות לדיוני המשך בקרב חברי הצוות והמלצות לפרקטיקה יישומית בארגון.
דילוג לתוכן
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;
});
}
});
});