Skip to content

Instantly share code, notes, and snippets.

@akirattii
Created November 25, 2016 04:53
Show Gist options
  • Save akirattii/a7325bb155617959380dad54ec9dcec7 to your computer and use it in GitHub Desktop.
Save akirattii/a7325bb155617959380dad54ec9dcec7 to your computer and use it in GitHub Desktop.
Create and fire custom event
// fire `hoge` event.
window.dispatchEvent(new Event('hoge'));
window.addEventListener('hoge', function(e) {
// callbacked on `hoge` event fired.
console.log('"hoge" event fired.');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment