Created
March 12, 2017 10:10
-
-
Save Dosant/3e36a06b9a907263889fe82018eb0c75 to your computer and use it in GitHub Desktop.
Handle Click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Получили кнопки как HTML-Element*/ | |
var button = document.getElementById('my-button'); | |
/* Функция, которую назначим обработчиком */ | |
function handleClick() { | |
console.log('Хендлю клик'); | |
} | |
/* Прикрепляем обработчика на событие 'click' */ | |
button.addEventListener('click', handleClick); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment