Skip to content

Instantly share code, notes, and snippets.

@imkost
Last active November 18, 2016 18:22
Show Gist options
  • Save imkost/212c50e1400e9315643ab85d61981f05 to your computer and use it in GitHub Desktop.
Save imkost/212c50e1400e9315643ab85d61981f05 to your computer and use it in GitHub Desktop.
function NameEditor() {
return `
<div class="nameEditor">
<div>Enter you name:</div>
<input onKeyUp="NameEditor.onKeyUp(this)" />
<div>
Hello, <span></span>
</div>
</div>
`;
}
NameEditor.onKeyUp = (input) => {
input.nextElementSibling.querySelector('span').innerText = input.value;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment