Composed event callback handler
function togglePanel() {
$(".panel").slideToggle();
}
function doOtherStuff() {
// other stuff is done here
}
function handleArrowClick() {
togglePanel();
doOtherStuff();
}
$('.arrow').on('click', handleArrowClick);