
The Client is building a next-generation digital commerce experience platform that brings brands to life through immersive storytelling and interactive product experiences.
Our technology powers high-scale, real-time brand communication across email, SMS, RCS, and other messaging channels—helping global brands connect with customers in more meaningful ways.
If you enjoy working on scalable backend systems, real-time messaging, and products that are visible and impactful, this role is for you.
window.addEventListener('DOMContentLoaded', (event) => { // Находим все кнопки "Податься" const applyButtons = document.querySelectorAll('.apply-button'); // Замените на ваш класс кнопки // Находим скрытое поле в форме для вакансии const jobInput = document.querySelector('#job-title-input'); // Замените на ID вашего input applyButtons.forEach(button => { button.addEventListener('click', function(e) { // Получаем название вакансии из атрибута data-job-title const jobTitle = this.getAttribute('data-job-title'); // Устанавливаем значение в скрытое поле формы if (jobInput) { jobInput.value = jobTitle; } }); }); });