Skip to content

Instantly share code, notes, and snippets.

@ndugger
Last active August 29, 2015 14:09
Show Gist options
  • Save ndugger/f0c11e4e6efa815221fb to your computer and use it in GitHub Desktop.
Save ndugger/f0c11e4e6efa815221fb to your computer and use it in GitHub Desktop.
//I had two scripts, both adding their own click event handler...
//However, they were being added in an unsuitable order...
//I could not rearrange when they were called...
//How can I move the first event after the second?
var event = "click",
events = $._data(element, "events")[event]; //[event1, event2]
events.push(events.shift()); //[event2, event1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment