I'm attempting to copy events from one element, to another using pure JS (i.e. not JQuery).
The bug I'm hitting, is when there's multiple events, the last event is used for both.
Bit hard to explain, please refer to my jsbin example, I want to copy the mousedown and mouseup events from #foo to #bar. The bug is, the mouseup event is fired for both mouseup and mousedown on the #bar element.
Here's the code snippet I'm currently working with, to copy events.
copyEvents(fromEl, toEl, ['onmousedown', 'onmouseup']);
function copyEvents(fromEl, toEl, events){
  for (var i = 0; i < events.length; i++){
    var event = events[i];
    var func = fromEl[events[i]];
    if(func){
      if (console){ console.log('Copying event - ' + event + ' = ' + func); }
      toEl[event] = function(evt){ func.call(this); };
    }
  }
}
 
     
     
    