Skip to content

Instantly share code, notes, and snippets.

@styks1987
Created June 29, 2015 14:08
Show Gist options
  • Save styks1987/b13adf5716b36f4c6ac7 to your computer and use it in GitHub Desktop.
Save styks1987/b13adf5716b36f4c6ac7 to your computer and use it in GitHub Desktop.
events.fireEvent = function(obj, type, data) {
var e = document.createEvent('UIEvents'),
cur,
val;
// TODO: Test cancelling
e.initEvent(type, false, true);
// Copy provided data into event object
if (data) {
for (cur in data) {
e[cur] = data[cur];
}
}
return obj.dispatchEvent(e);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment