Created
July 20, 2017 02:28
-
-
Save brandonmp/a383afc360b3fec40f49ce2639215327 to your computer and use it in GitHub Desktop.
mimic-dom-hover-event
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mimicHover = (ele/*: DOMNode*/) => { | |
var e = document.createEvent('MouseEvents'); | |
e.initEvent('mouseover', true, false); | |
ele.dispatchEvent && ele.dispatchEvent(e); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment