Skip to content

Instantly share code, notes, and snippets.

@teebot
Created March 25, 2015 11:44
Show Gist options
  • Save teebot/3918797e1c8133306914 to your computer and use it in GitHub Desktop.
Save teebot/3918797e1c8133306914 to your computer and use it in GitHub Desktop.
Custom Event JS
var event = new CustomEvent('newMsg', { detail: 'Hello people' });
window.addEventListener('newMsg', function handler(e){ console.log(e.detail) }, false);
window.dispatchEvent(event);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment