Skip to content

Instantly share code, notes, and snippets.

@amowu
Created December 14, 2016 09:47
Show Gist options
  • Select an option

  • Save amowu/bc3ad09ec210938385c982f4d11b45d8 to your computer and use it in GitHub Desktop.

Select an option

Save amowu/bc3ad09ec210938385c982f4d11b45d8 to your computer and use it in GitHub Desktop.
Custom mouse event data on IE
var event = document.createEvent('MouseEvent');
var args = ['click', true, true];
event.data = { 'foo': 'bar' };
event.initEvent.apply(event, args);
element.dispatchEvent(event);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment