![javascript](https://habrastorage.org/r/w120/webt/59/cc/76/59cc7600c78a2239379574.jpeg)
JavaScript
1
Вклад в тег
var handlerOne = function(e) {
alert('This is a first function');
};
var handlerTwo = function(e) {
alert('This is a second function');
};
$('.first').click(function(e) {
handlerOne(e);
})
$('.second').click(function() {
handlerOne(e);
handlerTwo(e);
})