// Установка обработчиков для уже существующих полей document.querySelectorAll('input, textarea').forEach(function(input) { addInputEventHandlers(input); }); // Отслеживание изменений в DOM для новых элементов var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { mutation.addedNodes.forEach(function(node) { if (node.tagName === 'INPUT' || node.tagName === 'TEXTAREA') { addInputEventHandlers(node); } // Также обработаем случаи, когда новые элементы содержат вложенные input или textarea if (node.nodeType === Node.ELEMENT_NODE) { node.querySelectorAll('input, textarea').forEach(function(input) { addInputEventHandlers(input); }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); });
Curiosity about life in all its aspects, I think, is still the secret of great creative people.
20
From initial consultation to scheme design, installation of hardware and software, and commissioning of the charge points, we'll manage every stage of the process.
100
About
The best ideas come as jokes
Make your thinking as funny as possible.
12
Work you should be doing for the rest of your life