Skip to content

Instantly share code, notes, and snippets.

@okonet
Created August 23, 2012 12:18
Show Gist options
  • Save okonet/3436156 to your computer and use it in GitHub Desktop.
Save okonet/3436156 to your computer and use it in GitHub Desktop.
MouseEvent
theEvent = document.createEvent('MouseEvents')
theEvent.initEvent("click", true, true, e.view, 1, e.changedTouches[0].screenX, e.changedTouches[0].screenY, e.changedTouches[0].clientX, e.changedTouches[0].clientY, e.ctrlKey, e.altKey, e.shiftKey, e.metaKey,0, null)
@theTarget.dispatchEvent theEvent
@theTarget = null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment