Created
March 29, 2018 10:17
-
-
Save beckyconning/09c5adde115a1994071208cbb03df25a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
document.querySelector("body").appendChild(document.createElement("button")); | |
document.querySelector("button").addEventListener("mouseover", function() { | |
document.querySelector("button").appendChild(document.createTextNode("😎")); | |
}); | |
document.querySelector("button") | |
.dispatchEvent(new Event('mouseover', { 'bubbles': true, 'cancelable': true })); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment