Skip to content

Instantly share code, notes, and snippets.

@kpuputti
Created August 11, 2011 13:27
Show Gist options
  • Save kpuputti/1139644 to your computer and use it in GitHub Desktop.
Save kpuputti/1139644 to your computer and use it in GitHub Desktop.
Custon Javascript event trigger function
// http://www.html5rocks.com/en/mobile/workingoffthegrid.html
var fireEvent = function(name, data) {
var e = document.createEvent("Event");
e.initEvent(name, true, true);
e.data = data;
window.dispatchEvent(e);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment