Category Archives: Style

Nothing Found

It seems we can’t find what you’re looking for. Perhaps searching can help.

jQuery(document).ready(function($) { // Zilele săptămânii în ordinea taburilor const today = 2; // ⚠️ Forțăm ziua de marți (1=luni, 2=marți, ..., 5=vineri) // Doar pentru zilele Luni–Vineri (1–5) if (today >= 1 && today <= 5) { // Selectăm grupul de taburi (în funcție de poziție sau ID, dacă e disponibil) const tabsNav = $('.ux-tabs-nav li'); // Activăm tabul zilei (index: luni = 0, marți = 1 etc.) const tabIndex = today - 1; // Simulăm click pe tabul potrivit tabsNav.eq(tabIndex).find('a').trigger('click'); } });