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);
})