Skip to content

Instantly share code, notes, and snippets.

@joec4i
Created August 21, 2014 01:47
Show Gist options
  • Save joec4i/dd852c1e566c62a76703 to your computer and use it in GitHub Desktop.
Save joec4i/dd852c1e566c62a76703 to your computer and use it in GitHub Desktop.
Simulate events for easier PhoneGap development
var eventName = 'offline';
var event = document.createEvent('Event');
event.initEvent(eventName, true, true);
document.dispatchEvent(event);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment