daytonn
7/1/2013 - 3:31 PM

Composed event callback handler

Composed event callback handler

function togglePanel() {
  $(".panel").slideToggle();
}

function doOtherStuff() {
  // other stuff is done here
}

function handleArrowClick() {
  togglePanel();
  doOtherStuff();
}
 
$('.arrow').on('click', handleArrowClick);