Skip to content

Instantly share code, notes, and snippets.

@danielnass
Created May 9, 2016 21:52
Show Gist options
  • Save danielnass/095526a8fcc372385fd4a41f4142c571 to your computer and use it in GitHub Desktop.
Save danielnass/095526a8fcc372385fd4a41f4142c571 to your computer and use it in GitHub Desktop.
// For a full list of event types: https://developer.mozilla.org/en-US/docs/Web/API/document.createEvent
var el = document.getElementById('olar'),
eBlur = document.createEvent('HTMLEvents');
eBlur.initEvent('blur', true, false);
el.dispatchEvent(eBlur);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment