Skip to content

Instantly share code, notes, and snippets.

@beckyconning
Created March 29, 2018 10:17
Show Gist options
  • Save beckyconning/09c5adde115a1994071208cbb03df25a to your computer and use it in GitHub Desktop.
Save beckyconning/09c5adde115a1994071208cbb03df25a to your computer and use it in GitHub Desktop.
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