15 lines
583 B
JavaScript
15 lines
583 B
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
const button = document.getElementById('action-btn');
|
|
const statusText = document.getElementById('js-status');
|
|
|
|
if (button && statusText) {
|
|
button.addEventListener('click', function() {
|
|
// Показываем скрытый текст при клике
|
|
statusText.classList.remove('hidden');
|
|
// Меняем текст на кнопке
|
|
button.textContent = 'Работает!';
|
|
button.style.backgroundColor = '#2ecc71';
|
|
});
|
|
}
|
|
});
|