Skip to content

Instantly share code, notes, and snippets.

@umhan35
Last active April 10, 2016 16:28
Show Gist options
  • Save umhan35/d0f319b2c23a28b2edca to your computer and use it in GitHub Desktop.
Save umhan35/d0f319b2c23a28b2edca to your computer and use it in GitHub Desktop.
one way binding...?
<input type="number">
<p></p>
<script type="text/javascript">
var p = document.querySelector('p')
var i = document.querySelector('input')
i.oninput = function () {
p.textContent = this.value
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment