bind event only once

If you can apply it, probably want to take a look at event.preventDefault and event.stopPropagation
OR unbind and bind each time, within your method like

function someMethod()
{
  $(obj).off('click').on('click', function(e) {
    // put your logic in here 
  });
}

Leave a Comment