Last active
August 29, 2015 14:09
-
-
Save ndugger/f0c11e4e6efa815221fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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