logo

საქართველოს ბიზნესის აკადემია-SBA-მ მიგრაციის საერთაშორისო ორგანიზაციის (IOM) წარმომადგენლებს უმასპინძლა.

მიმდინარე წლის 11 სექტემბერს, საქართველოს ბიზნესის აკადემია-SBA-მ მიგრაციის საერთაშორისო ორგანიზაციის (IOM) წარმომადგენლებს უმასპინძლა, შეხვედრას ესწრებოდნენ პროფესიული საგანმანათლებლო დაწესებულებების ხელმძღვანელები. აღნიშნული შეხვედრის ძირითადი მიზანი იყო ბულგარეთში შრომის მობილობის მრავალმხრივი შესაძლებლობების შესახებ ცნობიერების ამაღლება.
document.addEventListener('DOMContentLoaded', () => { // Wait a bit more for dynamic content to load setTimeout(() => { const button = document.querySelector('a.tutor-btn.tutor-btn-primary.tutor-btn-lg.tutor-btn-block'); if (!button) { console.log('Button not found'); return; } console.log('Button found:', button); // Change button text button.textContent = 'წინასწარი რეგისტრაცია'; // Try multiple ways to find the category let categoryText = ''; // Method 1: Look for the specific div structure const categoryDiv = document.querySelector('.tutor-meta.tutor-course-details-info'); if (categoryDiv) { const categoryLink = categoryDiv.querySelector('a'); if (categoryLink) { categoryText = categoryLink.textContent.trim(); } } // Method 2: If not found, search more broadly if (!categoryText) { const allLinks = document.querySelectorAll('a[href*="course-category"]'); if (allLinks.length > 0) { categoryText = allLinks[0].textContent.trim(); } } // Method 3: Search in all text containing "კატეგორია" if (!categoryText) { const allDivs = document.querySelectorAll('div'); for (let div of allDivs) { if (div.textContent.includes('კატეგორია:')) { const link = div.querySelector('a'); if (link) { categoryText = link.textContent.trim(); break; } } } } console.log('Category found:', categoryText); // Determine which URL to use based on category let targetUrl = ''; if (categoryText === 'პროფესიული კვალიფიკაციები' || categoryText === 'სრული ზოგადი განათლება') { targetUrl = 'https://docs.google.com/forms/d/10i--MdOOjI_aoqaZjaNRHkq7FMpESM6fui7brlH-5Vc/edit?usp=forms_home&ouid=114390394204825826874&ths=true'; console.log('Using first form URL'); } else if (categoryText === 'პროფესიული მომზადება' || categoryText === 'პროფესიული გადამზადება') { targetUrl = 'https://docs.google.com/forms/d/15vgvogv2oammJUqpGXHJYRp2DkirMyZ_rKKEtHsZ1oQ/edit'; console.log('Using second form URL'); } else { // Fallback to original URL if category doesn't match targetUrl = 'https://docs.google.com/forms/d/10i--MdOOjI_aoqaZjaNRHkq7FMpESM6fui7brlH-5Vc/edit'; console.log('Using fallback URL'); } // Update the link directly since button IS the link button.setAttribute('href', targetUrl); button.setAttribute('target', '_blank'); console.log('Link updated to:', targetUrl); }, 500); // Wait 500ms for page to fully load });// Keep the existing counter replacement logic document.querySelectorAll('span.counter').forEach(span => { if (span.textContent.trim() === "91") { let h4 = span.closest("h4"); if (h4) { h4.innerHTML = h4.innerHTML.replace("+", "%"); } } });